Merge branch 'io' into audio
[cantaveria.git] / root.h
blob6e1285c07f743b995b7402048c972d41bc6a4d18
1 #define VERSION_MAJOR 0
2 #define VERSION_MINOR 0
4 #define MAX_PLAYERS 6
6 #define QUANTUM 10
7 #define SLEEP_MS 1
9 #define PI 3.14159265359
10 #define PI2 2*PI
12 #define RANDOM_SEED 57
14 #ifndef false
15 #define false 0
16 #endif
18 #ifndef true
19 #define true 1
20 #endif
22 #ifndef bool
23 typedef int bool;
24 #endif
26 extern int dt;