diff --git a/share/protocol/GameCs.proto b/share/protocol/GameCs.proto index 29e906a1..cc143541 100644 --- a/share/protocol/GameCs.proto +++ b/share/protocol/GameCs.proto @@ -5783,7 +5783,8 @@ enum FrameCmdDef FrameCmdDef_MoveStop = 2; //实体移动停止 FrameCmdDef_UseCommonAbility = 3; //实体使用普通技能 FrameCmdDef_ChangeShootDir = 4; //改变设计方向 - FrameCmdDef_Max = 5; + FrameCmdDef_MovePoint = 5; //实体移动到指定点 + FrameCmdDef_Max = 6; } message MoveDirectionCommand{ @@ -5791,6 +5792,11 @@ message MoveDirectionCommand{ int32 seq = 2; } +message MovePointCommand{ + int32 x = 1; + int32 y = 2; +} + message ChangeShootDirCommand{ int32 degree = 1; int32 seq = 2; @@ -5802,6 +5808,7 @@ message CSPlayerOpInfo{ FrameCmdDef type = 2; MoveDirectionCommand move = 3; ChangeShootDirCommand changeDir = 4; + MovePointCommand movePoint = 5; } message CSFrapBootInfo{