mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 08:30:22 +03:00
17 lines
428 B
Protocol Buffer
17 lines
428 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
// Version: 5.0
|
||
|
// CmdId: 7671
|
||
|
|
||
|
import "HuntingOfferData.proto";
|
||
|
import "HuntingPair.proto";
|
||
|
|
||
|
message GetCityHuntingOfferRsp {
|
||
|
uint32 city_id = 8;
|
||
|
repeated HuntingOfferData hunting_offer_list = 9;
|
||
|
uint32 next_refresh_time = 10;
|
||
|
int32 retcode = 11;
|
||
|
HuntingPair ongoing_hunting_pair = 13;
|
||
|
uint32 cur_week_finished_count = 15;
|
||
|
}
|