16 lines
171 B
C++
16 lines
171 B
C++
#ifndef SCENELIST_HPP_
|
|
#define SCENELIST_HPP_
|
|
|
|
enum class SceneList {
|
|
//these are reserved
|
|
QUIT,
|
|
CONTINUE,
|
|
FIRST,
|
|
|
|
//custom indexes
|
|
TESTSYSTEMS,
|
|
INGAME,
|
|
};
|
|
|
|
#endif
|