18 lines
364 B
Protocol Buffer
18 lines
364 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message ReliquaryPromoteRsp {
|
|
enum CmdId {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
CMD_ID = 626;
|
|
ENET_CHANNEL_ID = 0;
|
|
ENET_IS_RELIABLE = 1;
|
|
}
|
|
int32 retcode = 1;
|
|
uint64 targetReliquaryGuid = 2;
|
|
uint32 oldPromoteLevel = 3;
|
|
uint32 curPromoteLevel = 4;
|
|
repeated uint32 oldAppendPropList = 5;
|
|
repeated uint32 curAppendPropList = 6;
|
|
}
|