inital commit

This commit is contained in:
2020-08-18 15:42:30 -05:00
commit 9d366e3720
30 changed files with 4032 additions and 0 deletions

17
src/settings.hpp Normal file
View File

@@ -0,0 +1,17 @@
#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