mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 00:34:36 +03:00
19 lines
501 B
Protocol Buffer
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;
|
|
}
|
|
}
|
|
|