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/application.hpp
T
2013-08-11 20:39:08 +10:00

26 lines
348 B
C++

#ifndef APPLICATION_HPP_
#define APPLICATION_HPP_
#include "threading.hpp"
#include <vector>
class Application {
public:
Application();
~Application();
void Init();
void Loop();
void Quit();
bool GetRunning() const { return running; }
private:
void NewRoom(/* args */);
std::vector<roomHandle> rooms;
bool running = true;
};
#endif