removed empty (obsolete) functions to init/do/stop toon animations
[rocksndiamonds.git] / src / cartoons.h
index b3c20192d88acb42b7b86424aa3403187619422f..612c6a3451e20c3f4f604c6f175e16ad29c6aaa8 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 InitGlobalAnimations(void);
+
+void DrawGlobalAnim(int);
 
 #endif