GC-Proto/proto/TeamChainSettleInfo.proto

15 lines
272 B
Protocol Buffer
Raw Normal View History

2023-01-28 17:00:48 +03:00
syntax = "proto3";
2023-01-28 17:00:48 +03:00
option java_package = "emu.grasscutter.net.proto";
2023-04-11 06:14:48 +03:00
// Name: PFLIFFDODCJ
2023-01-28 17:00:48 +03:00
message TeamChainSettleInfo {
2023-04-11 06:14:48 +03:00
uint32 difficulty = 12;
uint32 total_score = 8;
uint32 stage_id = 1;
bool is_new_record = 9;
repeated uint32 score_list = 6;
2023-01-28 17:00:48 +03:00
}
2023-02-28 04:12:44 +03:00