2025-09-14 01:35:16 +08:00
|
|
|
|
package maps
|
2025-08-15 22:44:28 +08:00
|
|
|
|
|
|
|
|
|
|
import (
|
2025-11-19 16:11:02 +08:00
|
|
|
|
"blazing/logic/service/common"
|
2025-08-15 22:44:28 +08:00
|
|
|
|
"blazing/modules/blazing/model"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2025-09-14 01:35:16 +08:00
|
|
|
|
type WalkInInfo struct {
|
2025-11-24 11:56:20 +08:00
|
|
|
|
Head common.TomeeHeader `cmd:"2101" struc:"skip"` //走路包
|
2025-08-26 23:22:10 +00:00
|
|
|
|
// Flag: 0为走,1为飞行模式,@UInt long
|
2025-08-15 22:44:28 +08:00
|
|
|
|
Flag uint32
|
|
|
|
|
|
|
|
|
|
|
|
// Point: 直接给坐标x,y
|
|
|
|
|
|
Point model.Pos `fieldDesc:"直接给坐标x,y"`
|
|
|
|
|
|
|
2025-10-30 01:37:53 +00:00
|
|
|
|
PathLen uint32 `struc:"sizeof=Path" `
|
2025-10-31 00:53:22 +08:00
|
|
|
|
Path string
|
2025-08-15 22:44:28 +08:00
|
|
|
|
}
|