Started working on the room system

This commit is contained in:
Kayne Ruse
2013-08-11 20:39:08 +10:00
commit 0a0b61287e
9 changed files with 217 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#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