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
+18
View File
@@ -0,0 +1,18 @@
#ifndef ROOM_HPP_
#define ROOM_HPP_
class Room {
public:
Room(/* args */);
~Room();
void Init();
void Loop();
void Quit();
bool GetRunning() const { return running; }
private:
bool running = true;
};
#endif