mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 12:36:06 +00:00
12 lines
221 B
Protocol Buffer
12 lines
221 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message AvatarSkillUpgradeRsp {
|
|
int32 retcode = 1;
|
|
uint64 avatarGuid = 2;
|
|
uint32 avatarSkillId = 3;
|
|
uint32 oldLevel = 4;
|
|
uint32 curLevel = 5;
|
|
}
|