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