mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 08:30:22 +03:00
23 lines
394 B
Protocol Buffer
23 lines
394 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
import "RegionalPlayVar.proto";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message RegionalPlayInfoNotify {
|
||
|
enum GBOBFCLEGEI {
|
||
|
option allow_alias = true;
|
||
|
NONE = 0;
|
||
|
PEPPOHPHJOJ = 6288;
|
||
|
DCDNILFDFLB = 0;
|
||
|
NNBKOLMPOEA = 1;
|
||
|
}
|
||
|
|
||
|
string playName = 8;
|
||
|
repeated RegionalPlayVar varList = 11;
|
||
|
uint32 playType = 14;
|
||
|
bool isEnabled = 2;
|
||
|
bool isInRegion = 7;
|
||
|
}
|