GSServer-CBT/soggy-mistress/proto/DebugNotify.proto
Akbar Yahya e0d4d8040c melon
2022-11-21 16:30:31 +08:00

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;
}