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) int m_##Name;
|
|
|
|
#define MACRO_CONFIG_STR(Name,ScriptName,Len,Def,Save,Desc) char m_##Name[Len]; // Flawfinder: ignore
|
|
|
|
#include "config_variables.h"
|
|
|
|
#undef MACRO_CONFIG_INT
|
|
|
|
#undef MACRO_CONFIG_STR
|
|
|
|
};
|
|
|
|
|
|
|
|
extern CConfiguration g_Config;
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
CFGFLAG_SAVE=1,
|
|
|
|
CFGFLAG_CLIENT=2,
|
2010-08-07 18:22:25 +00:00
|
|
|
CFGFLAG_SERVER=4,
|
2011-01-22 18:54:05 +00:00
|
|
|
CFGFLAG_STORE=8,
|
|
|
|
CFGFLAG_MASTER=16
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|