Protocols/define/enum.ts
2023-09-11 12:14:29 +08:00

19 lines
240 B
TypeScript

export enum EGameState {
Ready,
Wait,
TurnCards,
ImageViewer,
ChooseCards,
MyReady = 100,
MyWait,
MyTurnCards,
MyImageViewer,
MyChooseCards,
OtherReady = 200,
OtherWait,
OtherTurnCards,
OtherImageViewer,
OtherChooseCards,
}