mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
16 lines
371 B
Protocol Buffer
16 lines
371 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "BlitzRushStage.proto";
|
|
import "ParkourLevelInfo.proto";
|
|
|
|
// Name: JMBEALPJKGK
|
|
message BlitzRushActivityDetailInfo {
|
|
bool is_content_closed = 3;
|
|
repeated ParkourLevelInfo parkour_level_info_list = 1;
|
|
uint32 content_close_time = 11;
|
|
repeated BlitzRushStage stage_list = 15;
|
|
}
|
|
|