changed internal status handling of global animations
[rocksndiamonds.git] / src / cartoons.h
index a0290d1b3ca5d7324a82f8cd371c375b4364857b..257fad27db855c83141c22e3c9dd5f677bd301e3 100644 (file)
 #ifndef CARTOONS_H
 #define CARTOONS_H
 
+
+/* values for global animations */
+#define ANIM_STATE_INACTIVE    0
+#define ANIM_STATE_RESTART     (1 << 0)
+#define ANIM_STATE_WAITING     (1 << 1)
+#define ANIM_STATE_RUNNING     (1 << 2)
+
+
 void InitToons(void);
 
 void DrawGlobalAnim(void);