Files
match3-unity/Assets/Scripts/Services/Interfaces/IScoreService.cs
2025-12-15 02:34:59 +08:00

9 lines
196 B
C#

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