mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-12-02 10:20:21 +00:00
10 lines
167 B
Protocol Buffer
10 lines
167 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message MusicGameRecord {
|
|
uint32 max_score = 1;
|
|
uint32 max_combo = 2;
|
|
bool is_unlock = 3;
|
|
}
|