GC-Proto/proto/ReunionMissionInfo.proto

19 lines
458 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 "ReunionWatcherInfo.proto";
2023-04-11 06:14:48 +03:00
// Name: GDMLOGBJIGP
2023-02-18 04:48:44 +03:00
message ReunionMissionInfo {
2023-04-11 06:14:48 +03:00
uint32 mission_id = 1;
bool is_taken_reward = 4;
repeated ReunionWatcherInfo cur_day_watcher_list = 12;
uint32 next_refresh_time = 6;
repeated bool is_taken_reward_list = 8;
bool is_finished = 9;
repeated ReunionWatcherInfo watcher_list = 2;
2023-02-28 04:12:44 +03:00
uint32 cur_score = 13;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00