OpenFusion/src/settings.hpp

24 lines
554 B
C++
Raw Normal View History

#pragma once
2020-08-18 20:42:30 +00:00
namespace settings {
2020-08-23 21:09:31 +00:00
extern int VERBOSITY;
2020-08-18 20:42:30 +00:00
extern int LOGINPORT;
extern bool LOGINRANDCHARACTERS;
extern bool APPROVEALLNAMES;
2020-08-18 20:42:30 +00:00
extern int SHARDPORT;
extern std::string SHARDSERVERIP;
extern int PLAYERDISTANCE;
extern int NPCDISTANCE;
2020-08-18 20:42:30 +00:00
extern int SPAWN_X;
extern int SPAWN_Y;
extern int SPAWN_Z;
extern std::string MOTDSTRING;
2020-08-21 22:14:11 +00:00
extern std::string NPCJSON;
extern std::string XDTJSON;
2020-09-07 17:54:40 +00:00
extern std::string MOBJSON;
extern std::string GMPASS;
extern bool GM;
2020-08-18 20:42:30 +00:00
void init();
}