Dominion.PlayerTurnCounters.RemovePotions C# (CSharp) Method

RemovePotions() private method

private RemovePotions ( int count ) : void
count int
return void
        internal void RemovePotions(int count)
        {
            this.availablePotions -= count;
            if (this.availablePotions < 0)
            {
                this.availablePotions = 0;
            }
        }