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-02-28 06:08:38 +03:00
// Name: LIIKFCCFKNN
2023-01-28 17:00:48 +03:00
message TeamChainSettleInfo {
2023-02-28 06:08:38 +03:00
uint32 stage_id = 2;
uint32 difficulty = 9;
repeated uint32 score_list = 15;
bool is_new_record = 6;
uint32 total_score = 3;
2023-01-28 17:00:48 +03:00
}
2023-02-28 06:08:38 +03:00