mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 19:26:49 +00:00
15 lines
325 B
Protocol Buffer
15 lines
325 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "FetterData.proto";
|
||
|
|
||
|
message AvatarFetterInfo {
|
||
|
uint32 expNumber = 1;
|
||
|
uint32 expLevel = 2;
|
||
|
repeated uint32 openIdList = 3;
|
||
|
repeated uint32 finishIdList = 4;
|
||
|
repeated uint32 rewardedFetterLevelList = 5;
|
||
|
repeated FetterData fetterList = 6;
|
||
|
}
|