2020-08-18 20:42:30 +00:00
|
|
|
#ifndef _SETT_HPP
|
|
|
|
#define _SETT_HPP
|
|
|
|
|
|
|
|
namespace settings {
|
2020-08-22 17:39:13 +00:00
|
|
|
extern bool VERBOSE;
|
2020-08-18 20:42:30 +00:00
|
|
|
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;
|
2020-08-19 17:22:54 +00:00
|
|
|
extern std::string MOTDSTRING;
|
2020-08-21 22:14:11 +00:00
|
|
|
extern std::string NPCJSON;
|
2020-08-21 20:09:52 +00:00
|
|
|
extern std::string GMPASS;
|
2020-08-18 20:42:30 +00:00
|
|
|
|
|
|
|
void init();
|
|
|
|
}
|
|
|
|
|
2020-08-19 17:22:54 +00:00
|
|
|
#endif
|