18 lines
399 B
Protocol Buffer
18 lines
399 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
import "ReunionWatcherInfo.proto";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message ReunionMissionInfo {
|
||
|
uint32 missionId = 7;
|
||
|
repeated bool isTakenRewardList = 15;
|
||
|
bool isTakenReward = 3;
|
||
|
uint32 curScore = 4;
|
||
|
bool isFinished = 2;
|
||
|
repeated ReunionWatcherInfo watcherList = 13;
|
||
|
repeated ReunionWatcherInfo curDayWatcherList = 1;
|
||
|
uint32 nextRefreshTime = 6;
|
||
|
}
|