mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
13 lines
311 B
C#
13 lines
311 B
C#
namespace GildedRoseKata;
|
|
|
|
public class DailyUpdaterForLegendaryItems : DailyUpdater
|
|
{
|
|
public override void UpdateSellIn(Item item)
|
|
{
|
|
// Legendary Items don't change over time
|
|
}
|
|
public override void UpdateQuality(Item item)
|
|
{
|
|
// Legendary Items don't change over time
|
|
}
|
|
} |