mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-04-09 01:06:25 +00:00
10 lines
188 B
C++
10 lines
188 B
C++
#include "Network.h"
|
|
#include <memory>
|
|
#include <thread>
|
|
std::unique_ptr<ClientInterface> CI;
|
|
void NetMain() {
|
|
std::thread TCP(TCPServerMain);
|
|
TCP.detach();
|
|
UDPServerMain();
|
|
}
|