blob: 983fed8a129ac22a75bec4531559dea3201b3bec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef animation_h
#define animation_h
struct Rect;
typedef struct Animation {
int fc, s;
} Animation;
void update_anim(const Animation* a, int* f, struct Rect* r);
#endif
|