private void RpcLaunchStoredManeuver(int shipId)
 {
     if (DebugManager.DebugNetwork)
     {
         UI.AddTestLogEntry("C: RpcLaunchStoredManeuver");
     }
     ShipMovementScript.PerformStoredManeuver(shipId);
 }
Esempio n. 2
0
 public override void PerformStoredManeuver(int shipId)
 {
     ShipMovementScript.PerformStoredManeuver(Selection.ThisShip.ShipId);
 }
Esempio n. 3
0
 protected void PerformManeuverOfShip(GenericShip ship)
 {
     ShipMovementScript.PerformStoredManeuver(ship.ShipId);
 }