25 lines
470 B
Protocol Buffer
25 lines
470 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "ForwardType.proto";
|
|
import "Vector.proto";
|
|
|
|
message EvtRushMoveNotify {
|
|
enum CmdId {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
CMD_ID = 312;
|
|
ENET_CHANNEL_ID = 0;
|
|
ENET_IS_RELIABLE = 1;
|
|
IS_ALLOW_CLIENT = 1;
|
|
}
|
|
ForwardType forwardType = 1;
|
|
uint32 entityId = 2;
|
|
Vector velocity = 3;
|
|
float timeRange = 4;
|
|
int32 stateNameHash = 5;
|
|
int32 faceAngleCompact = 6;
|
|
Vector pos = 7;
|
|
Vector rushAttackTargetPos = 8;
|
|
Vector rushToPos = 9;
|
|
}
|