mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 09:19:25 +03:00
22 lines
369 B
Protocol Buffer
22 lines
369 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
import "ServerLogLevel.proto";
|
||
|
import "ServerLogType.proto";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message ServerLogNotify {
|
||
|
enum OGLOGLBDDLC {
|
||
|
option allow_alias = true;
|
||
|
NONE = 0;
|
||
|
PEPPOHPHJOJ = 24;
|
||
|
DCDNILFDFLB = 1;
|
||
|
NNBKOLMPOEA = 1;
|
||
|
}
|
||
|
|
||
|
string serverLog = 10;
|
||
|
ServerLogLevel logLevel = 15;
|
||
|
ServerLogType logType = 9;
|
||
|
}
|