23 lines
360 B
Go
23 lines
360 B
Go
package fortunerabbit
|
|
|
|
// 房间类型
|
|
const (
|
|
RoomMode_Classic int = iota //经典
|
|
RoomMode_Max
|
|
)
|
|
|
|
// 场景状态
|
|
const (
|
|
FortuneRabbitStateStart int = iota //默认状态
|
|
FortuneRabbitStateMax
|
|
)
|
|
|
|
// 玩家操作
|
|
const (
|
|
FortuneRabbitPlayerOpStart int = iota
|
|
FortuneRabbitPlayerOpSwitch
|
|
)
|
|
const NowByte int64 = 10000
|
|
|
|
const GameDataKey = "FortuneData"
|