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.hpp
T
2013-05-04 01:48:31 +10:00

26 lines
346 B
C++

#ifndef SERVER_HPP_
#define SERVER_HPP_
#include "tcp_network_manager.hpp"
#include "config_utility.hpp"
class Server {
public:
Server();
~Server();
void Init();
void Proc();
void Quit();
void HandleInput();
void UpdateWorld();
void HandleOutput();
private:
bool running;
TCPNetworkManager netMgr;
ConfigUtility config;
};
#endif