10 lines
116 B
Protocol Buffer
10 lines
116 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message PlayerLogoutNotify {
|
||
|
enum CmdId {
|
||
|
NONE = 0;
|
||
|
CMD_ID = 107;
|
||
|
}
|
||
|
int32 retcode = 1;
|
||
|
}
|