[mod] Room功能

This commit is contained in:
建喵 2023-09-11 14:56:22 +08:00
parent 905fdff15f
commit b65105567d

View File

@ -1,19 +1,38 @@
export enum EGameState { export enum EGameState {
/** 準備 */
Ready, Ready,
/** 等待回合 */
Wait, Wait,
/** 等待回合 */
TurnCards, TurnCards,
/** 看圖 */
ImageViewer, ImageViewer,
/** 選擇卡片回合 */
ChooseCards, ChooseCards,
/** 確定選擇卡片 */
ChooseCard,
/** 回合結束 */
TurnEnd,
MyReady = 100, MyReady = 100,
MyWait, MyWait,
MyTurnCards, MyTurnCards,
MyImageViewer, MyImageViewer,
MyChooseCards, MyChooseCards,
MyChooseCard,
MyTurnEnd,
OtherReady = 200, OtherReady = 200,
OtherWait, OtherWait,
OtherTurnCards, OtherTurnCards,
OtherImageViewer, OtherImageViewer,
OtherChooseCards, OtherChooseCards,
OtherChooseCard,
OtherTurnEnd,
} }