aboutsummaryrefslogtreecommitdiff
path: root/animation.h
blob: e894396089615273fb233b1ce189462a91683e34 (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;

int update_anim(const Animation* a, int* f, struct Rect* r);

#endif