using System; namespace PingPong.GameEngine.Components { public interface IScorable { /// /// Gets the score. /// /// /// The score. /// Score Score { get; } /// /// Sets the score. /// /// /// The score. /// /// /// Score. /// T SetScore(Score score); } }