mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 17:29:26 +03:00
13 lines
270 B
Protocol Buffer
13 lines
270 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ServerLogLevel.proto";
|
|
import "ServerLogType.proto";
|
|
|
|
// 4.6.0
|
|
// CmdId: 24778
|
|
message ServerLogNotify {
|
|
string server_log = 1;
|
|
ServerLogLevel log_level = 8;
|
|
ServerLogType log_type = 14;
|
|
} |