mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-04 01:04:36 +03:00
16 lines
324 B
Protocol Buffer
16 lines
324 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 2812
|
|
// Name: LKBDHDEIKGI
|
|
message GetCityReputationMapInfoRsp {
|
|
int32 retcode = 11;
|
|
repeated uint32 unlock_hunting_city_list = 7;
|
|
repeated uint32 reward_city_list = 8;
|
|
bool is_new_hunting = 4;
|
|
bool is_new_request = 1;
|
|
}
|
|
|