repo.or.cz
/
cantaveria.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'list' into audio
[cantaveria.git]
/
root.h
blob
6e1285c07f743b995b7402048c972d41bc6a4d18
1
#define VERSION_MAJOR 0
2
#define VERSION_MINOR 0
3
4
#define MAX_PLAYERS 6
5
6
#define QUANTUM 10
7
#define SLEEP_MS 1
8
9
#define PI 3.14159265359
10
#define PI2 2*PI
11
12
#define RANDOM_SEED 57
13
14
#ifndef false
15
#define false 0
16
#endif
17
18
#ifndef true
19
#define true 1
20
#endif
21
22
#ifndef bool
23
typedef
int bool
;
24
#endif
25
26
extern
int
dt
;