mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
21 lines
412 B
C++
21 lines
412 B
C++
#ifndef _SETT_HPP
|
|
#define _SETT_HPP
|
|
|
|
namespace settings {
|
|
extern int LOGINPORT;
|
|
extern bool LOGINRANDCHARACTERS;
|
|
extern int SHARDPORT;
|
|
extern std::string SHARDSERVERIP;
|
|
extern int VIEWDISTANCE;
|
|
extern int SPAWN_X;
|
|
extern int SPAWN_Y;
|
|
extern int SPAWN_Z;
|
|
extern std::string MOTDSTRING;
|
|
extern std::string NPCJSON;
|
|
extern std::string GMPASS;
|
|
|
|
void init();
|
|
}
|
|
|
|
#endif
|