mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 08:30:22 +03:00
14 lines
255 B
Protocol Buffer
14 lines
255 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
// Name: PILMILBHFIB
|
||
|
message InstableSprayDungeonSettleInfo {
|
||
|
uint32 difficulty = 1;
|
||
|
repeated uint32 score_list = 9;
|
||
|
uint32 stage_id = 4;
|
||
|
bool is_new_record = 11;
|
||
|
}
|
||
|
|