mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2024-12-26 07:49:29 +03:00
20 lines
287 B
Protocol Buffer
20 lines
287 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message DebugNotify {
|
||
|
enum Enum {
|
||
|
option allow_alias = true;
|
||
|
ZERO = 0;
|
||
|
CMD_ID = 101;
|
||
|
TARGET_SERVICE = 101;
|
||
|
ENET_CHANNEL_ID = 2;
|
||
|
ENET_IS_RELIABLE = 1;
|
||
|
}
|
||
|
enum Retcode {
|
||
|
SUCC = 0;
|
||
|
FAIL = 1;
|
||
|
}
|
||
|
uint32 id = 1;
|
||
|
string name = 2;
|
||
|
Retcode retcode = 3;
|
||
|
}
|