mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
17 lines
313 B
C++
17 lines
313 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;
|
||
|
|
||
|
void init();
|
||
|
}
|
||
|
|
||
|
#endif
|