257fad27db855c83141c22e3c9dd5f677bd301e3
[rocksndiamonds.git] / src / cartoons.h
1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // cartoons.h
10 // ============================================================================
11
12 #ifndef CARTOONS_H
13 #define CARTOONS_H
14
15
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)
21
22
23 void InitToons(void);
24
25 void DrawGlobalAnim(void);
26
27 void InitAnimation(void);
28 void StopAnimation(void);
29 void DoAnimation(void);
30
31 #endif