#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