Files
bl/logic/service/maps/mapin.go

24 lines
488 B
Go
Raw Normal View History

package maps
import (
"blazing/logic/service/common"
"blazing/modules/blazing/model"
)
2025-11-15 22:17:43 +00:00
type LeaveMapInboundInfo struct {
Head common.TomeeHeader `cmd:"2002" struc:"skip"` //切换地图
2025-11-15 22:17:43 +00:00
}
type InInfo struct {
Head common.TomeeHeader `cmd:"2001" struc:"skip"` //切换地图
// 地图类型
MapType uint32
MapId uint32
// Point: 直接给坐标xy
Point model.Pos `fieldDesc:"直接给坐标xy"`
// Reverse2: 暂定 占位字符2
//Reverse2 string `struc:"[2]byte"`
}