ddnet/src/engine/shared/config.h

33 lines
858 B
C
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
2010-05-29 07:25:38 +00:00
#ifndef ENGINE_SHARED_E_CONFIG_H
#define ENGINE_SHARED_E_CONFIG_H
struct CConfiguration
{
#define MACRO_CONFIG_INT(Name,ScriptName,Def,Min,Max,Save,Desc,Level) int m_##Name;
#define MACRO_CONFIG_STR(Name,ScriptName,Len,Def,Save,Desc,Level) char m_##Name[Len]; // Flawfinder: ignore
2010-05-29 07:25:38 +00:00
#include "config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
};
extern CConfiguration g_Config;
void dbg_msg1(const char * where, const char * format, ...);
2010-10-31 20:29:41 +00:00
2010-05-29 07:25:38 +00:00
enum
{
CFGFLAG_SAVE=1,
CFGFLAG_CLIENT=2,
CFGFLAG_SERVER=4,
CFGFLAG_STORE=8,
CFGFLAG_MASTER=16,
2011-01-06 03:46:10 +00:00
//DDRace
CMDFLAG_CHEAT=32,
CMDFLAG_TIMER=64,
CMDFLAG_HELPERCMD=128
2010-05-29 07:25:38 +00:00
};
#endif