pinball/assets/Scripts/Enums.ts

11 lines
279 B
TypeScript
Raw Normal View History

2024-02-27 18:19:33 -08:00
export enum EventType {
2024-02-28 03:25:11 -08:00
MainMenu = 'MainMenu',
StartGame = 'StartGame',
PlayGame = 'Playgame',
UpdateScore = 'SendScore',
UpdateStreak = 'UpdateSteak',
UpdateHighestStreak = 'UpdateHighestStreak',
UpdateBall = 'UpdateBall',
EndGame = 'EndGame',
}