Exemplo n.º 1
0
 public static DamageControl For(IShip ship)
 {
     return((DamageControl)SubSystem_Base.For(ship, SubsystemType.DamageControl));
 }
Exemplo n.º 2
0
 public static Shields For(IShip ship)
 {
     return((Shields)SubSystem_Base.For(ship, SubsystemType.Shields));
 }
Exemplo n.º 3
0
 public static ImmediateRangeScan For(IShip ship)
 {
     return((ImmediateRangeScan)SubSystem_Base.For(ship, SubsystemType.ImmediateRangeScan));
 }
Exemplo n.º 4
0
 public static Debug For(IShip ship)
 {
     return((Debug)SubSystem_Base.For(ship, SubsystemType.Debug));
 }
Exemplo n.º 5
0
 public static Computer For(IShip ship)
 {
     return((Computer)SubSystem_Base.For(ship, SubsystemType.Computer));
 }
Exemplo n.º 6
0
 public static Navigation For(IShip ship)
 {
     return((Navigation)SubSystem_Base.For(ship, SubsystemType.Navigation));
 }
Exemplo n.º 7
0
 public static Torpedoes For(IShip ship)
 {
     return((Torpedoes)SubSystem_Base.For(ship, SubsystemType.Torpedoes));
 }
Exemplo n.º 8
0
 public static Phasers For(IShip ship)
 {
     return((Phasers)SubSystem_Base.For(ship, SubsystemType.Phasers));
 }
Exemplo n.º 9
0
 public static ShortRangeScan For(IShip ship)
 {
     return((ShortRangeScan)SubSystem_Base.For(ship, SubsystemType.ShortRangeScan));
 }
Exemplo n.º 10
0
 public static LongRangeScan For(IShip ship)
 {
     return((LongRangeScan)SubSystem_Base.For(ship, SubsystemType.LongRangeScan));
 }
Exemplo n.º 11
0
 public static CombinedRangeScan For(IShip ship)
 {
     return((CombinedRangeScan)SubSystem_Base.For(ship, SubsystemType.CombinedRangeScan));
 }