]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/gamemodes/gamemode/onslaught/module.inc
fee33b14e24fd464266d254000789b94cbddc60f
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / gamemodes / gamemode / onslaught / module.inc
1 #ifndef ONS_CONSTANTS
2         #define ONS_CONSTANTS
3         REGISTER_NET_LINKED(ENT_CLIENT_GENERATOR)
4         REGISTER_NET_LINKED(ENT_CLIENT_CONTROLPOINT_ICON)
5 #endif
6
7 #if defined(SVQC)
8         #include "onslaught.qc"
9         #ifndef IMPLEMENTATION
10                 #include "sv_controlpoint.qh"
11                 #include "sv_generator.qh"
12         #else
13                 #include "sv_controlpoint.qc"
14                 #include "sv_generator.qc"
15         #endif
16 #elif defined(CSQC)
17         #ifndef IMPLEMENTATION
18                 #include "cl_controlpoint.qh"
19                 #include "cl_generator.qh"
20         #else
21                 #include "cl_controlpoint.qc"
22                 #include "cl_generator.qc"
23         #endif
24 #endif