1 #ifndef TURRETS_CONFIG_H
2 #define TURRETS_CONFIG_H
6 void Dump_Turret_Settings();
8 float tur_config_alsoprint;
10 const int MAX_TUR_CONFIG = 256;
11 float TUR_CONFIG_COUNT;
12 string tur_config_queue[MAX_TUR_CONFIG];
14 #define TUR_CONFIG_WRITETOFILE(a) { \
15 fputs(tur_config_file, a); \
16 if(tur_config_alsoprint) { LOG_INFO(a); } }