]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/gamemodes/gamemode/onslaught/onslaught.qh
take3: format 903 files
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / gamemodes / gamemode / onslaught / onslaught.qh
1 #pragma once
2
3 REGISTER_NET_LINKED(ENT_CLIENT_GENERATOR)
4 REGISTER_NET_LINKED(ENT_CLIENT_CONTROLPOINT_ICON)
5
6 #ifdef SVQC
7 IntrusiveList g_onsshields;
8 STATIC_INIT(g_onsshields)
9 {
10         g_onsshields = IL_NEW();
11 }
12 #endif
13
14 #ifdef CSQC
15 IntrusiveList g_onsgenerators;
16 STATIC_INIT(g_onsgenerators)
17 {
18         g_onsgenerators = IL_NEW();
19 }
20 #endif