Added blocks

This commit is contained in:
2016-06-20 22:35:14 +02:00
parent c6958f2205
commit 0f7895dc09
15 changed files with 192 additions and 37 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ StateHandler* StateHandler::instance = nullptr;
StateHandler::StateHandler()
{
available = false;
CState = MENU;
CurrentState = new MenuState();
CState = WORLD;
CurrentState = new WorldState();
CurrentState->init();
available = true;
}