mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
19 lines
400 B
Protocol Buffer
19 lines
400 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "ReunionWatcherInfo.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;
|
|
}
|