Ejemplo n.º 1
0
        public static bool WorkingWheels(Vessel Vsl)
        {
            ProtoPartModuleSnapshot[] Wheels = VesselHelper.GetModulesWithAlias(Vsl, "Wheel");
            if (Wheels.Length >= 4)
            {
                return(true);
            }

            return(false);

            // TODO: Check to see if they're borken

            /*
             * for (int i = 0; i < Wheels.Length; i++) {
             * ProtoPartSnapshot Wheel = Wheels [i];
             * }*/
        }