mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 15:00:06 +00:00
24 lines
545 B
C++
24 lines
545 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 int PLAYERDISTANCE;
|
|
extern int NPCDISTANCE;
|
|
extern int SPAWN_X;
|
|
extern int SPAWN_Y;
|
|
extern int SPAWN_Z;
|
|
extern int SPAWN_ANGLE;
|
|
extern std::string MOTDSTRING;
|
|
extern std::string NPCJSON;
|
|
extern std::string XDTJSON;
|
|
extern std::string MOBJSON;
|
|
extern bool GM;
|
|
|
|
void init();
|
|
}
|