]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/trigger/secret.qh
Cleanse the touch functions of the other evil
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / trigger / secret.qh
1 #ifndef SECRET_H
2 #define SECRET_H
3 #ifdef SVQC
4
5 /**
6  * Total number of secrets on the map.
7  */
8 float secrets_total;
9
10 /**
11  * Total numbe of secrets found on the map.
12  */
13 float secrets_found;
14
15
16 .float stat_secrets_total = _STAT(SECRETS_TOTAL);
17 .float stat_secrets_found = _STAT(SECRETS_FOUND);
18
19 /**
20  * update secrets status.
21  */
22 void secrets_setstatus(entity this);
23 #endif
24 #endif