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