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