mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
35 lines
897 B
C++
35 lines
897 B
C++
#pragma once
|
|
|
|
namespace settings {
|
|
extern int VERBOSITY;
|
|
extern int LOGINPORT;
|
|
extern bool APPROVEALLNAMES;
|
|
extern int DBSAVEINTERVAL;
|
|
extern int SHARDPORT;
|
|
extern std::string SHARDSERVERIP;
|
|
extern time_t TIMEOUT;
|
|
extern int VIEWDISTANCE;
|
|
extern bool SIMULATEMOBS;
|
|
extern int SPAWN_X;
|
|
extern int SPAWN_Y;
|
|
extern int SPAWN_Z;
|
|
extern int SPAWN_ANGLE;
|
|
extern int ACCLEVEL;
|
|
extern std::string MOTDSTRING;
|
|
extern std::string NPCJSON;
|
|
extern std::string XDTJSON;
|
|
extern std::string MOBJSON;
|
|
extern std::string PATHJSON;
|
|
extern std::string DROPSJSON;
|
|
extern std::string EGGSJSON;
|
|
extern std::string GRUNTWORKJSON;
|
|
extern std::string DBPATH;
|
|
extern int EVENTMODE;
|
|
extern int EVENTCRATECHANCE;
|
|
extern bool MONITORENABLED;
|
|
extern int MONITORPORT;
|
|
extern int MONITORINTERVAL;
|
|
|
|
void init();
|
|
}
|