Checking in the test scene and test tilesets

This commit is contained in:
Kayne Ruse
2013-10-22 19:22:18 +11:00
parent 2ec307510d
commit d4eb1e7b8d
10 changed files with 168 additions and 9 deletions
+5
View File
@@ -36,6 +36,7 @@ EditorApplication EditorApplication::instance;
//Add the custom scene headers here
#include "editor_scene.hpp"
#include "testificate_scene.hpp"
//-------------------------
//Public access members
@@ -108,6 +109,10 @@ void EditorApplication::LoadScene(SceneList sceneIndex) {
switch(sceneIndex) {
//add scene creation calls here
case SceneList::FIRST:
case SceneList::TESTIFICATESCENE:
activeScene = new TestificateScene();
break;
case SceneList::EDITORSCENE:
activeScene = new EditorScene();
break;