19 lines
459 B
Protocol Buffer
19 lines
459 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ReunionWatcherInfo.proto";
|
|
|
|
// Name: MJJFCCFKLNI
|
|
message ReunionMissionInfo {
|
|
repeated ReunionWatcherInfo cur_day_watcher_list = 10;
|
|
uint32 cur_score = 13;
|
|
repeated bool is_taken_reward_list = 3;
|
|
repeated ReunionWatcherInfo watcher_list = 6;
|
|
bool is_taken_reward = 8;
|
|
uint32 next_refresh_time = 15;
|
|
uint32 mission_id = 9;
|
|
bool is_finished = 2;
|
|
}
|
|
|