aboutsummaryrefslogtreecommitdiff
path: root/animation.h
diff options
context:
space:
mode:
Diffstat (limited to 'animation.h')
-rw-r--r--animation.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/animation.h b/animation.h
new file mode 100644
index 0000000..983fed8
--- /dev/null
+++ b/animation.h
@@ -0,0 +1,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