mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
5 lines
93 B
Java
5 lines
93 B
Java
|
|
public interface TennisGame {
|
|
void wonPoint(String playerName);
|
|
String getScore();
|
|
} |