public static void RedAlert(Vessel vessel) { if (vessel != null) { foreach (Part p in vessel.parts) { WarpDrive wd = p.FindModuleImplementing <WarpDrive> (); if (wd) { wd.CallRedAlert(); return; } } } }
public int GetEffectiveness(WarpDrive wd) { return(effectiveness); }