GC-Proto/proto/InstableSprayStageInfo.proto

15 lines
302 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 "InstableSprayTeamInfo.proto";
2023-02-28 04:12:44 +03:00
// Name: KPMFNAPKPOK
2023-02-18 04:48:44 +03:00
message InstableSprayStageInfo {
2023-02-28 04:12:44 +03:00
repeated InstableSprayTeamInfo team_info_list = 14;
bool is_finished = 1;
uint32 stage_id = 3;
uint32 max_score = 11;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00