using System; namespace Services.Interfaces { public interface IScoreService { event Action OnScoreChanged; int Score { get; } void ScoreCheck(int value); } }