Created server shell

This commit is contained in:
Kayne Ruse
2013-06-08 01:52:19 +10:00
parent a1b248d1d7
commit 253e9ec8fc
5 changed files with 101 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef SERVERAPPLICATION_HPP_
#define SERVERAPPLICATION_HPP_
class ServerApplication {
public:
ServerApplication();
~ServerApplication();
void Init();
void Proc();
void Quit();
private:
bool running = true;
};
#endif