mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
16 lines
354 B
Protocol Buffer
16 lines
354 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "cn.jisol.ngame.proto";
|
|
|
|
//生成宠物类
|
|
message GOnHookPet {
|
|
string key = 1; //生成宠物的key
|
|
int32 petTbId = 2; //生成宠物的配置表Id
|
|
int32 petLevel = 3; //生成宠物的等级
|
|
}
|
|
|
|
//生成的宠物类列表
|
|
message GOnHookPets {
|
|
repeated GOnHookPet pets = 1; //宠物列表
|
|
}
|