rewrite
This commit is contained in:
Anonymous275
2020-08-21 20:58:10 +03:00
parent 232c4d7b28
commit 31c96cee94
59 changed files with 4247 additions and 1212 deletions

8
src/Network/NetMain.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "Network.h"
#include <thread>
ClientInterface* CI;
void NetMain(){
std::thread TCP(TCPServerMain);
TCP.detach();
UDPServerMain();
}