GC-Proto/proto/SceneGalleryVintageHuntingInfo.proto
2023-02-28 09:12:44 +08:00

19 lines
501 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "VintageHuntingFirstStageInfo.proto";
import "VintageHuntingSecondStageInfo.proto";
import "VintageHuntingThirdStageInfo.proto";
// Name: HDOLPADGHOC
message SceneGalleryVintageHuntingInfo {
uint32 stage_id = 7;
oneof info {
VintageHuntingFirstStageInfo first_stage_info = 6;
VintageHuntingSecondStageInfo second_stage_info = 3;
VintageHuntingThirdStageInfo third_stage_info = 4;
}
}