]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/compiler.qh
Don't count non-client attackers as valid for accuracy
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / compiler.qh
1 #pragma once
2
3 #ifndef QCC_SUPPORT_ACCUMULATE
4         #ifdef GMQCC
5                 #define QCC_SUPPORT_ACCUMULATE
6         #endif
7 #endif
8
9 #ifndef QCC_SUPPORT_NIL
10         #ifdef GMQCC
11                 #define QCC_SUPPORT_NIL
12         #endif
13 #endif
14
15 #ifndef QCC_SUPPORT_ERASEABLE
16         #ifdef GMQCC
17                 #define QCC_SUPPORT_ERASEABLE
18         #endif
19 #endif
20
21 #ifndef QCC_SUPPORT_ALIAS
22         #ifdef GMQCC
23                 #define QCC_SUPPORT_ALIAS
24         #endif
25 #endif
26
27 #ifndef QCC_SUPPORT_POW
28     #ifdef GMQCC
29         #define QCC_SUPPORT_POW
30     #endif
31 #endif
32
33 #ifdef GMQCC
34     #define LABEL(id) :id
35 #else
36     #define LABEL(id) id:
37 #endif