15 lines
264 B
Protocol Buffer
15 lines
264 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "InstableSprayTeamInfo.proto";
|
||
|
|
||
|
message InstableSprayStageInfo {
|
||
|
uint32 maxScore = 2;
|
||
|
repeated InstableSprayTeamInfo teamInfoList = 3;
|
||
|
bool isFinished = 13;
|
||
|
uint32 stageId = 8;
|
||
|
}
|