server input

This commit is contained in:
Anonymous275
2020-10-31 14:55:00 +02:00
parent 71a84b4f1b
commit 3bdc75b0c0
9 changed files with 231 additions and 16 deletions

View File

@@ -8,8 +8,11 @@
}
}
int main(int argc, char* argv[]) {
std::thread t1(loop);
t1.detach();
#ifdef DEBUG
std::thread t1(loop);
t1.detach();
#endif
ConsoleInit();
InitServer(argc,argv);
InitConfig();
InitLua();