19 lines
240 B
TypeScript
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,
|
|
} |