From c153da255e2cea75e814b71f305d2b0a9b71005b Mon Sep 17 00:00:00 2001 From: "jiannan.guo@yingxiong.com" Date: Fri, 25 Jul 2025 21:29:09 +0800 Subject: [PATCH] pb --- 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 c4c8dbb2..29e906a1 100644 --- a/share/protocol/GameCs.proto +++ b/share/protocol/GameCs.proto @@ -5782,7 +5782,8 @@ enum FrameCmdDef FrameCmdDef_MoveDir = 1; //实体移动方向 FrameCmdDef_MoveStop = 2; //实体移动停止 FrameCmdDef_UseCommonAbility = 3; //实体使用普通技能 - FrameCmdDef_Max = 4; + FrameCmdDef_ChangeShootDir = 4; //改变设计方向 + FrameCmdDef_Max = 5; } message MoveDirectionCommand{ @@ -5790,11 +5791,17 @@ message MoveDirectionCommand{ int32 seq = 2; } +message ChangeShootDirCommand{ + int32 degree = 1; + int32 seq = 2; +} + //CS_GAMEMSGID_PLAYER_OP_INFO_REQ message CSPlayerOpInfo{ int32 eid = 1; FrameCmdDef type = 2; MoveDirectionCommand move = 3; + ChangeShootDirCommand changeDir = 4; } message CSFrapBootInfo{