23 lines
360 B
Go
23 lines
360 B
Go
package fortunetiger
|
|
|
|
// 房间类型
|
|
const (
|
|
RoomMode_Classic int = iota //经典
|
|
RoomMode_Max
|
|
)
|
|
|
|
// 场景状态
|
|
const (
|
|
FortuneTigerStateStart int = iota //默认状态
|
|
FortuneTigerStateMax
|
|
)
|
|
|
|
// 玩家操作
|
|
const (
|
|
FortuneTigerPlayerOpStart int = iota
|
|
FortuneTigerPlayerOpSwitch
|
|
)
|
|
const NowByte int64 = 10000
|
|
|
|
const GameDataKey = "FortuneTigerData"
|