mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
11 lines
240 B
Protocol Buffer
11 lines
240 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message TeamChainSettleInfo {
|
|
repeated uint32 score_list = 6;
|
|
bool is_new_record = 10;
|
|
uint32 total_score = 14;
|
|
uint32 difficulty = 13;
|
|
uint32 stage_id = 1;
|
|
}
|