mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 23:11:28 +00:00
8 lines
132 B
Java
8 lines
132 B
Java
package com.gildedrose;
|
|
|
|
public interface ItemInterface {
|
|
void updateQuality();
|
|
|
|
void updateNumberOfdayToSellRemaining();
|
|
}
|