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

19 lines
385 B
Go
Raw Normal View History

package maps
import (
"blazing/logic/service/common"
"blazing/modules/blazing/model"
)
type WalkInInfo struct {
Head common.TomeeHeader `cmd:"2101" struc:"skip"` //走路包
// Flag: 0为走1为飞行模式@UInt long
Flag uint32
// Point: 直接给坐标xy
Point model.Pos `fieldDesc:"直接给坐标xy"`
PathLen uint32 `struc:"sizeof=Path" `
Path string
}