AjRools.Expert.Rules.Rule.RetractIfNotReady C# (CSharp) Метод

RetractIfNotReady() публичный Метод

public RetractIfNotReady ( World world ) : bool
world World
Результат bool
        public bool RetractIfNotReady(World world)
        {
            if (this.IsReadyToFire(world))
                return false;

            this.Retract(world);

            return true;
        }