This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/client/scene_list.hpp
T
2013-05-11 23:51:02 +10:00

22 lines
267 B
C++

#ifndef SCENELIST_HPP_
#define SCENELIST_HPP_
enum class SceneList {
//these are reserved
QUIT, //doubles as "up one scene" in nested scenes
CONTINUE,
FIRST,
//custom indexes
TESTSYSTEMS,
SPLASH,
MAINMENU,
INGAME,
//subscenes
LOBBY,
COMBAT,
};
#endif