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: APHCHPHOBCI
|
|
message DuelHeartLevelInfo {
|
|
repeated DuelHeartLevelDifficultyInfo difficulty_info_list = 15;
|
|
uint32 level_id = 9;
|
|
bool is_open = 10;
|
|
bool is_cg_viewed = 4;
|
|
}
|
|
|