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