From 197c8dce6abcac855e82a504a9359d91e0eb5e99 Mon Sep 17 00:00:00 2001 From: "jiannan.guo@yingxiong.com" Date: Fri, 25 Jul 2025 23:49:02 +0800 Subject: [PATCH] 121 --- share/protocol/GameCs.proto | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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{