- 修改 PetInfo 和 PetEffectInfo 结构体,统一字段命名规范 - 更新 SkillInfo 结构体,增加技能等级字段 - 删除未使用的 LoginUserInfo 和 ServerInfo 结构体 - 引入 google/uuid 包,用于后续可能的唯一标识生成
10 lines
210 B
Go
10 lines
210 B
Go
package battle
|
|
|
|
// CatchMonsterOutboundInfo 捕捉怪物出站信息
|
|
type CatchMonsterOutboundInfo struct {
|
|
// 捕捉时间
|
|
CatchTime uint64 `json:"catchTime"`
|
|
// 宠物编号
|
|
PetID uint64 `json:"petId"`
|
|
}
|