GildedRose-Refactoring-Kata/csharpcore/GildedRose/DailyUpdaterForConjuredItems.cs
Sarah Ashri bdf20e735c Add new Conjured Items requirement and related tests
Also added some final notes on this solution and suggestions for further changes if we can change Item
2024-03-15 14:36:44 +10:00

9 lines
183 B
C#

namespace GildedRoseKata;
public class DailyUpdaterForConjuredItems : DailyUpdater
{
public override void UpdateQuality(Item item)
{
DecreaseQuality(item, 2);
}
}