GSServer-CBT/soggy-mistress/proto/DebugNotify.proto

20 lines
287 B
Protocol Buffer
Raw Normal View History

2022-11-21 11:30:31 +03:00
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;
}