Protocols/define/enum.ts

19 lines
240 B
TypeScript
Raw Normal View History

2023-09-10 11:33:38 +00:00
export enum EGameState {
2023-09-11 04:14:29 +00:00
Ready,
Wait,
2023-09-10 11:33:38 +00:00
TurnCards,
ImageViewer,
ChooseCards,
2023-09-11 04:14:29 +00:00
MyReady = 100,
MyWait,
2023-09-10 11:33:38 +00:00
MyTurnCards,
MyImageViewer,
MyChooseCards,
2023-09-11 04:14:29 +00:00
OtherReady = 200,
OtherWait,
OtherTurnCards,
2023-09-10 11:33:38 +00:00
OtherImageViewer,
OtherChooseCards,
}