]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/trigger/secret.qh
Merge branch 'sev/menu_icons_mipmap' into 'master'
[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;
17 .float stat_secrets_found;
18
19 /**
20  * update secrets status.
21  */
22 void secrets_setstatus();
23 #endif
24 #endif