mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-08 11:11:24 +00:00
11 lines
260 B
C#
11 lines
260 B
C#
namespace GildedRoseKata.Strategies;
|
|
|
|
public class SulfurasStrategy : BaseUpdateStrategy
|
|
{
|
|
public override void UpdateQuality(Item item)
|
|
{
|
|
// Sulfuras is legendary and never changes
|
|
item.Quality = ItemCategory.LegendaryQuality;
|
|
}
|
|
}
|