mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-04-03 22:36:23 +00:00
9 lines
153 B
C++
9 lines
153 B
C++
#include "Network.h"
|
|
#include <thread>
|
|
ClientInterface* CI;
|
|
void NetMain(){
|
|
std::thread TCP(TCPServerMain);
|
|
TCP.detach();
|
|
UDPServerMain();
|
|
}
|