]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/damage.qh
Rename defs to qh
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / damage.qh
1 #ifndef DAMAGE_H
2 #define DAMAGE_H
3
4 #if defined(CSQC)
5     #include "../common/util-pre.qh"
6     #include "sys-pre.qh"
7     #include "../dpdefs/csprogsdefs.qh"
8     #include "sys-post.qh"
9     #include "defs.qh"
10     #include "../dpdefs/keycodes.qh"
11     #include "../common/constants.qh"
12     #include "../common/stats.qh"
13     #include "../warpzonelib/anglestransform.qh"
14     #include "../warpzonelib/mathlib.qh"
15     #include "../warpzonelib/common.qh"
16     #include "../warpzonelib/client.qh"
17     #include "../common/playerstats.qh"
18     #include "../common/teams.qh"
19     #include "../common/util.qh"
20     #include "../common/nades.qh"
21     #include "../common/buffs.qh"
22     #include "../common/test.qh"
23     #include "../common/counting.qh"
24     #include "../common/weapons/weapons.qh"
25     #include "../common/mapinfo.qh"
26     #include "../common/command/markup.qh"
27     #include "../common/command/rpn.qh"
28     #include "../common/command/generic.qh"
29     #include "../common/command/shared_defs.qh"
30     #include "../common/urllib.qh"
31     #include "../common/animdecide.qh"
32     #include "command/cl_cmd.qh"
33     #include "../common/monsters/monsters.qh"
34     #include "autocvars.qh"
35     #include "../common/notifications.qh"
36     #include "../common/deathtypes.qh"
37 #elif defined(MENUQC)
38 #elif defined(SVQC)
39 #endif
40
41 .float total_damages; // number of effects which currently are attached to a player
42 #endif