GildedRose-Refactoring-Kata/Tennis/csharp/TennisGame.cs
2013-02-01 15:38:54 +01:00

13 lines
132 B
C#

using System;
namespace Tennis
{
public interface TennisGame
{
void WonPoint (string playerName);
string GetScore ();
}
}