mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
9 lines
174 B
C#
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();
|
|
}
|
|
}
|