Files
basic-computer-games/46_Hexapawn/csharp/IPlayer.cs
2022-01-17 10:48:54 +02:00

9 lines
174 B
C#

namespace Hexapawn
{
// An interface implemented by a player of the game to track the number of wins.
internal interface IPlayer
{
void AddWin();
}
}