Files
bl/logic/service/maps/mapin.go
2025-11-15 22:17:43 +00:00

25 lines
493 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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