private void IssueMoveCommand(List <string> entityIds, Vector3 target)
 {
     if (entityIds.Count > 0)
     {
         EntityCommand moveCommand = new EntityCommand(CommandType.MOVE, entityIds);
         moveCommand.point = target;
         clientNetworkManager.SendCommand(moveCommand);
     }
 }