mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 00:19:24 +03:00
13 lines
276 B
Protocol Buffer
13 lines
276 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "ItemParam.proto";
|
||
|
|
||
|
// CmdId: 26120
|
||
|
message TakeCityReputationExploreRewardRsp {
|
||
|
repeated ItemParam item_list = 1;
|
||
|
uint32 city_id = 3;
|
||
|
int32 retcode = 7;
|
||
|
repeated uint32 explore_id_list = 15;
|
||
|
}
|