Created the basic program flow

This commit is contained in:
Kayne Ruse
2013-05-11 23:51:02 +10:00
parent 4671afe900
commit 6a19d0a312
16 changed files with 470 additions and 17 deletions
+7 -1
View File
@@ -3,13 +3,19 @@
enum class SceneList {
//these are reserved
QUIT,
QUIT, //doubles as "up one scene" in nested scenes
CONTINUE,
FIRST,
//custom indexes
TESTSYSTEMS,
SPLASH,
MAINMENU,
INGAME,
//subscenes
LOBBY,
COMBAT,
};
#endif