[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 {
/** 準備 */
Ready,
/** 等待回合 */
Wait,
/** 等待回合 */
TurnCards,
/** 看圖 */
ImageViewer,
/** 選擇卡片回合 */
ChooseCards,
/** 確定選擇卡片 */
ChooseCard,
/** 回合結束 */
TurnEnd,
MyReady = 100,
MyWait,
MyTurnCards,
MyImageViewer,
MyChooseCards,
MyChooseCard,
MyTurnEnd,
OtherReady = 200,
OtherWait,
OtherTurnCards,
OtherImageViewer,
OtherChooseCards,
OtherChooseCard,
OtherTurnEnd,
}