9 lines
196 B
C#
9 lines
196 B
C#
using System;
|
|
|
|
namespace Services.Interfaces {
|
|
public interface IScoreService {
|
|
event Action<int> OnScoreChanged;
|
|
int Score { get; }
|
|
void ScoreCheck(int value);
|
|
}
|
|
} |