2023-02-28 04:12:44 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "VintageHuntingFirstStageInfo.proto";
|
|
|
|
import "VintageHuntingSecondStageInfo.proto";
|
|
|
|
import "VintageHuntingThirdStageInfo.proto";
|
|
|
|
|
2023-04-11 06:14:48 +03:00
|
|
|
// Name: OBFDDCOLMPE
|
2023-02-28 04:12:44 +03:00
|
|
|
message SceneGalleryVintageHuntingInfo {
|
2023-04-11 06:14:48 +03:00
|
|
|
uint32 stage_id = 6;
|
2023-02-28 04:12:44 +03:00
|
|
|
oneof info {
|
2023-04-11 06:14:48 +03:00
|
|
|
VintageHuntingFirstStageInfo first_stage_info = 12;
|
|
|
|
VintageHuntingSecondStageInfo second_stage_info = 13;
|
|
|
|
VintageHuntingThirdStageInfo third_stage_info = 7;
|
2023-02-28 04:12:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|