7 lines
185 B
C
7 lines
185 B
C
#ifndef __gamestate_h__
|
|
#define __gamestate_h__
|
|
|
|
typedef enum gameStateEnum { MainMenu = 1, Game = 2, LevelSelect = 3, SkinSelect = 4, Settings = 5, Highscores = 6 } GameState;
|
|
|
|
#endif
|