1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
7 // http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
10 // ============================================================================
16 /* values for global animations */
17 #define ANIM_STATE_INACTIVE 0
18 #define ANIM_STATE_RESTART (1 << 0)
19 #define ANIM_STATE_WAITING (1 << 1)
20 #define ANIM_STATE_RUNNING (1 << 2)
24 void InitGlobalAnimations(void);
26 void DrawGlobalAnim(int);
28 void InitAnimation(void);
29 void StopAnimation(void);
30 void DoAnimation(void);