Files
BeamMP-Server/src/Network/NetMain.cpp
Anonymous275 31c96cee94 V0.6
rewrite
2020-08-21 20:58:10 +03:00

9 lines
153 B
C++

#include "Network.h"
#include <thread>
ClientInterface* CI;
void NetMain(){
std::thread TCP(TCPServerMain);
TCP.detach();
UDPServerMain();
}