pinball/assets/_Game/Scripts/Enum/GameState.ts

11 lines
178 B
TypeScript
Raw Normal View History

2024-03-06 10:08:30 -08:00
enum GameState {
2024-03-28 20:35:44 -07:00
Init = 'Init',
2024-04-03 02:43:18 -07:00
Ready = 'Ready',
2024-03-28 20:35:44 -07:00
Playing = 'Playing',
GameOver = 'GameOver',
End = 'End',
Relive = 'Relive',
2024-03-06 10:08:30 -08:00
}
export default GameState;