[add] Room SetReady,ChangeState

This commit is contained in:
2023-09-10 19:33:38 +08:00
parent 725551854f
commit 14a11e2f3a
4 changed files with 66 additions and 1 deletions

16
define/enum.ts Normal file
View File

@@ -0,0 +1,16 @@
export enum EGameState {
Loading,
TurnCards,
ImageViewer,
ChooseCards,
MyLoading = 100,
MyTurnCards,
MyImageViewer,
MyChooseCards,
OtherLoading = 200,
OtherTurnCards = 201,
OtherImageViewer,
OtherChooseCards,
}