23 lines
340 B
Go
23 lines
340 B
Go
package fortuneox
|
|
|
|
// 房间类型
|
|
const (
|
|
RoomMode_Classic int = iota //经典
|
|
RoomMode_Max
|
|
)
|
|
|
|
// 场景状态
|
|
const (
|
|
FortuneOxStateStart int = iota //默认状态
|
|
FortuneOxStateMax
|
|
)
|
|
|
|
// 玩家操作
|
|
const (
|
|
FortuneOxPlayerOpStart int = iota
|
|
FortuneOxPlayerOpSwitch
|
|
)
|
|
const NowByte int64 = 10000
|
|
|
|
const GameDataKey = "FortuneData"
|