mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 16:39:26 +03:00
13 lines
289 B
Protocol Buffer
13 lines
289 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Obf: DPBFMJOKIMN
|
|
message ResVersionConfig {
|
|
uint32 version = 1;
|
|
bool relogin = 2;
|
|
string md5 = 3;
|
|
string release_total_size = 4;
|
|
string version_suffix = 5;
|
|
string branch = 6;
|
|
string next_script_version = 7;
|
|
}
|