2025-10-23 01:02:19 +08:00
|
|
|
package item
|
|
|
|
|
|
|
|
|
|
import (
|
2025-11-19 16:11:02 +08:00
|
|
|
"blazing/logic/service/common"
|
2025-10-23 01:02:19 +08:00
|
|
|
"blazing/modules/blazing/model"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type ChangePlayerClothOutboundInfo struct {
|
|
|
|
|
UserID uint32 `description:"玩家id" codec:"uint"`
|
|
|
|
|
ClothesLen uint32 `struc:"sizeof=ClothList" fieldDesc:"穿戴装备的信息" json:"clothes_len"`
|
|
|
|
|
ClothList []model.PeopleItemInfo `description:"玩家装备列表" codec:"list"` // List<PeopleItemInfo> -> 指针切片
|
|
|
|
|
}
|
|
|
|
|
type ChangePlayerClothInboundInfo struct {
|
2025-11-24 11:56:20 +08:00
|
|
|
Head common.TomeeHeader `cmd:"2604" struc:"skip"`
|
2025-10-23 01:02:19 +08:00
|
|
|
ClothesLen uint32 `struc:"sizeof=ClothList" fieldDesc:"穿戴装备的信息" json:"clothes_len"`
|
|
|
|
|
ClothList []uint32 `description:"玩家装备列表" codec:"list"`
|
|
|
|
|
}
|