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

8 lines
83 B
TypeScript
Raw Normal View History

2024-03-06 10:08:30 -08:00
enum GameState {
Init,
Playing,
GameOver,
}
export default GameState;