mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
13 lines
139 B
C#
13 lines
139 B
C#
using System;
|
|
|
|
namespace Tennis
|
|
{
|
|
public interface TennisGame
|
|
{
|
|
void WonPoint (string playerName);
|
|
string GetScore ();
|
|
|
|
}
|
|
}
|
|
|