Created empty TCPNetworkManager; needs work, I don't even like the name

This commit is contained in:
Kayne Ruse
2013-05-02 01:17:56 +10:00
parent 95f2d212ef
commit b935fcf1d1
7 changed files with 147 additions and 16 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef SERVER_HPP_
#define SERVER_HPP_
class Server {
public:
Server();
~Server();
void Init();
void Proc();
void Quit();
private:
};
#endif