15 lines
315 B
Protocol Buffer
15 lines
315 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "DuelHeartLevelDifficultyInfo.proto";
|
||
|
|
||
|
// Name: PGJPCBNFOEP
|
||
|
message DuelHeartLevelInfo {
|
||
|
repeated DuelHeartLevelDifficultyInfo difficulty_info_list = 3;
|
||
|
bool is_cg_viewed = 14;
|
||
|
bool is_open = 6;
|
||
|
uint32 level_id = 12;
|
||
|
}
|
||
|
|