Started working on the room system
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user