jiannan.guo@yingxiong.com 1 month ago
parent
commit
197c8dce6a
  1. 9
      share/protocol/GameCs.proto

9
share/protocol/GameCs.proto

@ -5783,7 +5783,8 @@ enum FrameCmdDef
FrameCmdDef_MoveStop = 2; // FrameCmdDef_MoveStop = 2; //
FrameCmdDef_UseCommonAbility = 3; //使 FrameCmdDef_UseCommonAbility = 3; //使
FrameCmdDef_ChangeShootDir = 4; // FrameCmdDef_ChangeShootDir = 4; //
FrameCmdDef_Max = 5; FrameCmdDef_MovePoint = 5; //
FrameCmdDef_Max = 6;
} }
message MoveDirectionCommand{ message MoveDirectionCommand{
@ -5791,6 +5792,11 @@ message MoveDirectionCommand{
int32 seq = 2; int32 seq = 2;
} }
message MovePointCommand{
int32 x = 1;
int32 y = 2;
}
message ChangeShootDirCommand{ message ChangeShootDirCommand{
int32 degree = 1; int32 degree = 1;
int32 seq = 2; int32 seq = 2;
@ -5802,6 +5808,7 @@ message CSPlayerOpInfo{
FrameCmdDef type = 2; FrameCmdDef type = 2;
MoveDirectionCommand move = 3; MoveDirectionCommand move = 3;
ChangeShootDirCommand changeDir = 4; ChangeShootDirCommand changeDir = 4;
MovePointCommand movePoint = 5;
} }
message CSFrapBootInfo{ message CSFrapBootInfo{

Loading…
Cancel
Save