19 lines
387 B
Go
19 lines
387 B
Go
package maps
|
||
|
||
import (
|
||
"blazing/logic/service/common"
|
||
"blazing/modules/blazing/model"
|
||
)
|
||
|
||
type WalkInInfo struct {
|
||
Head common.TomeeHeader `cmd:"2101" struc:"[0]pad"` //走路包
|
||
// Flag: 0为走,1为飞行模式,@UInt long
|
||
Flag uint32
|
||
|
||
// Point: 直接给坐标x,y
|
||
Point model.Pos `fieldDesc:"直接给坐标x,y"`
|
||
|
||
PathLen uint32 `struc:"sizeof=Path" `
|
||
Path string
|
||
}
|