[mod] Room功能
This commit is contained in:
parent
905fdff15f
commit
b65105567d
@ -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,
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user