using System; namespace FlappyBird.Core { public interface IScoreManager { int CurrentScore { get; } int BestScore { get; } event Action OnScoreChanged; event Action OnBestScoreChanged; void AddScore(int points); void ResetScore(); } }