Crash Handeling

This commit is contained in:
Anonymous275
2020-07-11 00:03:37 +03:00
parent 303647a8c3
commit 232c4d7b28
11 changed files with 83 additions and 55 deletions

View File

@@ -1,7 +1,6 @@
///
/// Created by Anonymous275 on 28/01/2020
///
#include <string>
#include <chrono>
#include <fstream>
@@ -15,7 +14,7 @@ void ParseConfig();
void addToLog(const std::string& Data);
//void ServerMain(int Port, int MaxClients);
void HeartbeatInit();
std::string ServerVersion = "0.50";
std::string ServerVersion = "0.51";
std::string ClientVersion = "1.50";
std::string CustomIP;
void HandleResources(std::string path);
@@ -72,4 +71,4 @@ void addToLog(const std::string& Data){
LFS.open ("Server.log", std::ios_base::app);
LFS << Data.c_str();
LFS.close();
}
}