mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 06:21:29 +00:00
13 lines
246 B
C#
13 lines
246 B
C#
using System;
|
|
|
|
namespace csharp.StrategyPatternExample
|
|
{
|
|
/// <summary>
|
|
/// Interface that every category strategy will have to implement.
|
|
/// </summary>
|
|
interface ICategoryStrategy
|
|
{
|
|
void Update(Item item);
|
|
}
|
|
}
|