Files
bl/logic/service/pet/exp.go
昔念 c0b09c92c4 ```
refactor(common): 统一使用 common.TomeeHeader 替代 player.TomeeHeader

将多处
2025-11-19 16:11:02 +08:00

20 lines
741 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 pet
import "blazing/logic/service/common"
// 实现InboundMessage接口用于处理宠物设置经验的入站消息
type PetSetExpInboundInfo struct {
Head common.TomeeHeader `cmd:"2318" struc:"[0]pad"`
// CatchTime 精灵获取时间对应Java的@UInt long
CatchTime uint32 `fieldDescription:"精灵获取时间" uint:"true" autoCodec:"true"`
// Exp 分配经验对应Java的@UInt long
Exp uint32 `fieldDescription:"分配经验" uint:"true" autoCodec:"true"`
}
// 实现OutboundMessage接口用于处理宠物设置经验的出站消息
type PetSetExpOutboundInfo struct {
// Exp 剩余累计经验对应Java的@UInt long
Exp uint32 `fieldDescription:"剩余累计经验" uint:"true" autoCodec:"true"`
}