15 lines
279 B
Protocol Buffer
15 lines
279 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
// Name: BJPCCGMMMPF
|
||
|
message TreasureMapBonusChallengeInfo {
|
||
|
uint32 solution_id = 2;
|
||
|
map<uint32, bool> fragment_map = 14;
|
||
|
bool is_done = 15;
|
||
|
bool is_active = 3;
|
||
|
uint32 config_id = 1;
|
||
|
}
|
||
|
|