Started working on the room system
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#include "room.hpp"
|
||||
|
||||
Room::Room() {
|
||||
//TODO
|
||||
}
|
||||
|
||||
Room::~Room() {
|
||||
//TODO
|
||||
}
|
||||
|
||||
void Room::Init() {
|
||||
//TODO
|
||||
|
||||
//disable this for debugging
|
||||
running = false;
|
||||
}
|
||||
|
||||
void Room::Loop() {
|
||||
while(running) {
|
||||
//TODO
|
||||
}
|
||||
}
|
||||
|
||||
void Room::Quit() {
|
||||
//TODO
|
||||
}
|
||||
Reference in New Issue
Block a user