mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
d787a4832b
to reset specific config to default value
28 lines
775 B
C++
28 lines
775 B
C++
/* (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. */
|
|
#ifndef ENGINE_CONFIG_H
|
|
#define ENGINE_CONFIG_H
|
|
|
|
#include "kernel.h"
|
|
|
|
class IConfigManager : public IInterface
|
|
{
|
|
MACRO_INTERFACE("config", 0)
|
|
public:
|
|
typedef void (*SAVECALLBACKFUNC)(IConfigManager *pConfig, void *pUserData);
|
|
|
|
virtual void Init() = 0;
|
|
virtual void Reset() = 0;
|
|
virtual void Reset(const char *pScriptName) = 0;
|
|
virtual bool Save() = 0;
|
|
virtual class CConfig *Values() = 0;
|
|
|
|
virtual void RegisterCallback(SAVECALLBACKFUNC pfnFunc, void *pUserData) = 0;
|
|
|
|
virtual void WriteLine(const char *pLine) = 0;
|
|
};
|
|
|
|
extern IConfigManager *CreateConfigManager();
|
|
|
|
#endif
|