AjRools.Expert.Rules.Rule.RetractIfNotReady C# (CSharp) Method

RetractIfNotReady() public method

public RetractIfNotReady ( World world ) : bool
world World
return bool
        public bool RetractIfNotReady(World world)
        {
            if (this.IsReadyToFire(world))
                return false;

            this.Retract(world);

            return true;
        }