Worked out the basic server layout

This commit is contained in:
Kayne Ruse
2013-05-03 00:55:47 +10:00
parent b935fcf1d1
commit f349e59fd3
6 changed files with 105 additions and 4 deletions
+8
View File
@@ -1,6 +1,8 @@
#ifndef SERVER_HPP_
#define SERVER_HPP_
#include "tcp_network_manager.hpp"
class Server {
public:
Server();
@@ -9,7 +11,13 @@ public:
void Init();
void Proc();
void Quit();
void HandleInput();
void UpdateWorld();
void HandleOutput();
private:
bool running;
TCPNetworkManager netMgr;
};
#endif