GC-Proto/proto/ArenaChallengeActivityDetailInfo.proto

15 lines
351 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ArenaChallengeMonsterLevel.proto";
2023-02-28 04:12:44 +03:00
// Name: MACMCNLAMHB
2023-02-18 04:48:44 +03:00
message ArenaChallengeActivityDetailInfo {
2023-02-28 04:12:44 +03:00
bool is_finish_any_level = 9;
repeated ArenaChallengeMonsterLevel level_list = 15;
uint32 world_level = 2;
map<uint32, uint32> level_open_time_map = 6;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00