Files
breakout/gamestate.h
2018-01-15 15:34:43 +01:00

7 lines
169 B
C

#ifndef __gamestate_h__
#define __gamestate_h__
typedef enum gameStateEnum { MainMenu = 1, Game = 2, LevelSelect = 3, Settings = 4, Highscores = 5 } GameState;
#endif