18 lines
365 B
Protocol Buffer
18 lines
365 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "FirstStageInfo.proto";
|
|
import "SecondStageInfo.proto";
|
|
import "ThirdStageInfo.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message VintageHuntingInfo {
|
|
uint32 stageId = 2;
|
|
oneof AEDOHBBHKNH {
|
|
FirstStageInfo first_stage_info = 14;
|
|
SecondStageInfo second_stage_info = 11;
|
|
ThirdStageInfo third_stage_info = 9;
|
|
}
|
|
}
|