mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 21:47:39 +00:00
13 lines
271 B
Protocol Buffer
13 lines
271 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message AvatarUpgradeRsp {
|
|
int32 retcode = 1;
|
|
uint64 avatarGuid = 2;
|
|
uint32 oldLevel = 3;
|
|
uint32 curLevel = 4;
|
|
map<uint32, float> oldFightPropMap = 5;
|
|
map<uint32, float> curFightPropMap = 6;
|
|
}
|