]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/dpdefs/csprogsdefs.qh
Effects: make sending entities easier, make sending server ids harder
[xonotic/xonotic-data.pk3dir.git] / qcsrc / dpdefs / csprogsdefs.qh
1 #ifndef CSPROGSDEFS_H
2 #define CSPROGSDEFS_H
3
4 #pragma noref 1
5
6 #define true _true
7 #define false _false
8 #define TRUE _TRUE
9 #define FALSE _FALSE
10
11 #define spawn _spawn
12 #define particleeffectnum _particleeffectnum
13 #define trailparticles __trailparticles
14 #define pointparticles __pointparticles
15 #define setmodel _setmodel
16
17 #include "upstream/csprogsdefs.qc"
18
19 #undef true
20 #undef false
21 #undef TRUE
22 #undef FALSE
23
24 #undef spawn
25 #undef particleeffectnum
26 #undef trailparticles
27 #undef pointparticles
28 #undef setmodel
29
30 #pragma noref 0
31
32 #define ReadFloat() ReadCoord()
33
34 #endif