mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
26 lines
392 B
Protocol Buffer
26 lines
392 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "CmdId.proto";
|
||
|
|
||
|
message DebugNotify {
|
||
|
//enum LEBINLJNBIN {
|
||
|
// option allow_alias= true;
|
||
|
// KDIIPNENMIM = 0;
|
||
|
// PEPPOHPHJOJ = 101;
|
||
|
// ANGMONKOIOA = 101;
|
||
|
// DCDNILFDFLB = 2;
|
||
|
// NNBKOLMPOEA = 1;
|
||
|
//}
|
||
|
|
||
|
enum Retcode {
|
||
|
SUCC = 0;
|
||
|
FAIL = 1;
|
||
|
}
|
||
|
|
||
|
uint32 id = 1;
|
||
|
string name = 2;
|
||
|
CmdId retcode = 3;
|
||
|
}
|