16 lines
319 B
Protocol Buffer
16 lines
319 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
// Name: FOGBFDIKCIL
|
||
|
message BrickBreakerLevelInfo {
|
||
|
bool is_can_start = 6;
|
||
|
repeated uint32 chosen_skill_list = 3;
|
||
|
repeated uint32 chosen_avatar_list = 12;
|
||
|
uint32 max_score = 2;
|
||
|
bool is_finish = 8;
|
||
|
uint32 level_id = 7;
|
||
|
}
|
||
|
|