GC-Proto/proto/SceneGalleryVintageHuntingInfo.proto
2023-04-11 11:14:48 +08:00

19 lines
503 B
Protocol Buffer

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