mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
16 lines
312 B
Protocol Buffer
16 lines
312 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// Name: JMHAGFLFKIF
|
|
// CmdId: 2829
|
|
message TakeCityReputationExploreRewardRsp {
|
|
uint32 city_id = 2;
|
|
int32 retcode = 10;
|
|
repeated ItemParam item_list = 11;
|
|
repeated uint32 explore_id_list = 12;
|
|
}
|
|
|