]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/turrets/config.qh
Merge branch 'terencehill/quickmenu_file_example' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / turrets / config.qh
1 #ifndef TURRETS_CONFIG_H
2 #define TURRETS_CONFIG_H
3
4 #ifdef SVQC
5
6 void Dump_Turret_Settings();
7 float tur_config_file;
8 float tur_config_alsoprint;
9
10 const int MAX_TUR_CONFIG = 256;
11 float TUR_CONFIG_COUNT;
12 string tur_config_queue[MAX_TUR_CONFIG];
13
14 #define TUR_CONFIG_WRITETOFILE(a) { \
15         fputs(tur_config_file, a); \
16         if(tur_config_alsoprint) { LOG_INFO(a); } }
17
18
19 #endif
20
21 #endif