16 lines
224 B
TypeScript
16 lines
224 B
TypeScript
|
export enum EGameState {
|
||
|
Loading,
|
||
|
TurnCards,
|
||
|
ImageViewer,
|
||
|
ChooseCards,
|
||
|
|
||
|
MyLoading = 100,
|
||
|
MyTurnCards,
|
||
|
MyImageViewer,
|
||
|
MyChooseCards,
|
||
|
|
||
|
OtherLoading = 200,
|
||
|
OtherTurnCards = 201,
|
||
|
OtherImageViewer,
|
||
|
OtherChooseCards,
|
||
|
}
|