Refactor to work on Linux / Unix, fix some compiler errors.

CMakeLists was also modified to make this work, but its scuffed
and i will hold on to that for a while longer
This commit is contained in:
Lion Kortlepel
2020-11-01 02:00:27 +01:00
parent 02fbe72eed
commit 8bc35fb82e
18 changed files with 254 additions and 41 deletions

View File

@@ -5,6 +5,7 @@
#include "Client.hpp"
#include "Logger.h"
#include <string>
#include <algorithm>
std::string CustomIP;
std::string GetSVer(){
@@ -31,4 +32,4 @@ void InitServer(int argc, char* argv[]){
InitLog();
Args(argc,argv);
CI = new ClientInterface;
}
}