14 lines
305 B
Protocol Buffer
14 lines
305 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ElectroherculesBattleLevelInfo.proto";
|
|
|
|
// Name: OJPECCKGNLO
|
|
message ElectroherculesBattleStageInfo {
|
|
bool is_stage_open = 11;
|
|
uint32 stage_id = 15;
|
|
repeated ElectroherculesBattleLevelInfo level_info_list = 6;
|
|
}
|
|
|