This commit is contained in:
cat 2025-06-05 16:38:39 +10:00
parent 0fc07ac95e
commit cf5334fb66
3 changed files with 18 additions and 3 deletions

3
dat.h
View file

@ -8,6 +8,7 @@ struct Samply {
Image *idle;
Image *walka;
Image *walkb;
Image *error;
};
struct Image {
@ -25,7 +26,9 @@ struct State {
SDL_Renderer *ren;
SDL_DisplayID dpy;
SDL_Rect bounds;
Uint64 lastframe;
Uint64 frame;
Samply *sam;
};