Files

9 lines
194 B
C#

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