GC-Proto/proto/SceneGalleryVintageHuntingS...

24 lines
679 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
import "VintageHuntingFirstStageSettleInfo.proto";
import "VintageHuntingSecondStageSettleInfo.proto";
import "VintageHuntingThirdStageSettleInfo.proto";
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
// Name: KKEOOIIAONP
// CmdId: 20310
2023-02-18 04:48:44 +03:00
message SceneGalleryVintageHuntingSettleNotify {
2023-02-28 04:12:44 +03:00
uint32 stage_id = 10;
uint32 OLMGCNBPMKH = 11;
bool is_new_record = 1;
uint32 GMIBGLMDMDC = 9;
bool has_new_watcher = 15;
oneof info {
VintageHuntingFirstStageSettleInfo first_stage_info = 12;
VintageHuntingSecondStageSettleInfo second_stage_info = 2;
VintageHuntingThirdStageSettleInfo third_stage_info = 3;
}
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00