This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/server/server_application.hpp
T
2013-06-08 01:52:19 +10:00

16 lines
226 B
C++

#ifndef SERVERAPPLICATION_HPP_
#define SERVERAPPLICATION_HPP_
class ServerApplication {
public:
ServerApplication();
~ServerApplication();
void Init();
void Proc();
void Quit();
private:
bool running = true;
};
#endif