23 lines
366 B
Go
23 lines
366 B
Go
package fortunedragon
|
|
|
|
// 房间类型
|
|
const (
|
|
RoomMode_Classic int = iota //经典
|
|
RoomMode_Max
|
|
)
|
|
|
|
// 场景状态
|
|
const (
|
|
FortuneDragonStateStart int = iota //默认状态
|
|
FortuneDragonStateMax
|
|
)
|
|
|
|
// 玩家操作
|
|
const (
|
|
FortuneDragonPlayerOpStart int = iota
|
|
FortuneDragonPlayerOpSwitch
|
|
)
|
|
const NowByte int64 = 10000
|
|
|
|
const GameDataKey = "FortuneDragonData"
|