mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
8 lines
131 B
Java
8 lines
131 B
Java
package com.gildedrose.strategy;
|
|
|
|
import com.gildedrose.Item;
|
|
|
|
public interface ItemUpdateStrategy {
|
|
void update(Item item);
|
|
}
|