12 lines
220 B
Protocol Buffer
12 lines
220 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "ItemParam.proto";
|
||
|
|
||
|
message TakeAchievementRewardRsp {
|
||
|
repeated ItemParam itemList = 7;
|
||
|
repeated uint32 idList = 4;
|
||
|
int32 retcode = 13;
|
||
|
}
|