This commit is contained in:
TheDoctor
2019-10-15 19:03:35 +01:00
parent c50d40341f
commit 0481a7d642
15 changed files with 157 additions and 201 deletions

View File

@ -1,6 +1,7 @@
#pragma once
#include <VoidNet/Net.hpp>
#include "HLAPI/ServerConfig.hpp"
#include <memory>
@ -19,6 +20,9 @@ namespace std::net
void AddPlugin(Plugin* plugin);
public:
ServerConfig Config;
private:
std::shared_ptr<std::net::TcpServer> m_tcpServer;
};