mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-14 22:21:20 +00:00
Also added some final notes on this solution and suggestions for further changes if we can change Item
9 lines
183 B
C#
9 lines
183 B
C#
namespace GildedRoseKata;
|
|
|
|
public class DailyUpdaterForConjuredItems : DailyUpdater
|
|
{
|
|
public override void UpdateQuality(Item item)
|
|
{
|
|
DecreaseQuality(item, 2);
|
|
}
|
|
} |