mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-07 05:29:09 -07:00
9 lines
117 B
C
9 lines
117 B
C
#ifndef STATE_H
|
|
#define STATE_H
|
|
|
|
typedef enum {
|
|
GameStateLife,
|
|
GameStateGameOver,
|
|
} State;
|
|
|
|
#endif // STATE_H
|