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
+30
View File
@@ -0,0 +1,30 @@
#include "application.hpp"
Application::Application() {
//TODO
}
Application::~Application() {
//TODO
}
void Application::Init() {
//TODO
//disable this for debugging
running = false;
}
void Application::Loop() {
while(running) {
//TODO
}
}
void Application::Quit() {
//TODO
}
void Application::NewRoom() {
//TODO
}