19 lines
350 B
Protocol Buffer
19 lines
350 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "PropChangeReason.proto";
|
|
|
|
message EntityFightPropChangeReasonNotify {
|
|
enum CmdId {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
CMD_ID = 1207;
|
|
ENET_CHANNEL_ID = 0;
|
|
ENET_IS_RELIABLE = 1;
|
|
}
|
|
uint32 entityId = 1;
|
|
uint32 propType = 2;
|
|
float propDelta = 3;
|
|
PropChangeReason reason = 4;
|
|
repeated uint32 paramList = 5;
|
|
}
|