Created server shell
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user