OpenFusion/src/settings.hpp

25 lines
572 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 APPROVEALLNAMES;
extern int DBSAVEINTERVAL;
2020-08-18 20:42:30 +00:00
extern int SHARDPORT;
extern std::string SHARDSERVERIP;
extern time_t TIMEOUT;
extern int CHUNKSIZE;
2020-08-18 20:42:30 +00:00
extern int SPAWN_X;
extern int SPAWN_Y;
extern int SPAWN_Z;
extern int SPAWN_ANGLE;
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;
2020-09-17 02:27:21 +00:00
extern std::string PATHJSON;
extern bool GM;
2020-08-18 20:42:30 +00:00
void init();
}