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