Files
match3-unity/Assets/Scripts/Services/Interfaces/IScoreService.cs

9 lines
194 B
C#

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