15 lines
272 B
Protocol Buffer
15 lines
272 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
// Name: PFLIFFDODCJ
|
||
|
message TeamChainSettleInfo {
|
||
|
uint32 difficulty = 12;
|
||
|
uint32 total_score = 8;
|
||
|
uint32 stage_id = 1;
|
||
|
bool is_new_record = 9;
|
||
|
repeated uint32 score_list = 6;
|
||
|
}
|
||
|
|