]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/trigger/secret.qh
Merge branch 'TimePath/globalforces' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / trigger / secret.qh
1 #pragma once
2 #ifdef SVQC
3
4 /**
5  * Total number of secrets on the map.
6  */
7 float secrets_total;
8
9 /**
10  * Total numbe of secrets found on the map.
11  */
12 float secrets_found;
13
14
15 .float stat_secrets_total = _STAT(SECRETS_TOTAL);
16 .float stat_secrets_found = _STAT(SECRETS_FOUND);
17
18 /**
19  * update secrets status.
20  */
21 void secrets_setstatus(entity this);
22 #endif