mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 14:31:28 +00:00
9 lines
186 B
C#
9 lines
186 B
C#
namespace GildedRoseKata;
|
|
|
|
public static class ItemQuality
|
|
{
|
|
public const int MinQuality = 0;
|
|
public const int MaxQuality = 50;
|
|
public const int LegendaryItemQuality = 80;
|
|
|
|
} |