GC-Proto/proto/QueryRegionListHttpRsp.proto

16 lines
342 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-03-07 05:02:26 +03:00
import "RegionSimpleInfo.proto";
2023-04-11 11:18:47 +03:00
// Name: BHOFPAFHBIE
message QueryRegionListHttpRsp {
2023-03-07 05:02:26 +03:00
int32 retcode = 1;
repeated RegionSimpleInfo region_list = 2;
bytes client_secret_key = 5;
bytes client_custom_config_encrypted = 6;
bool enable_login_pc = 7;
}
2023-03-07 05:02:26 +03:00