Scoreboard/ScoreboardApi/Functions/IPointsCalculator.cs
2025-01-08 09:39:14 +00:00

11 lines
244 B
C#

namespace ScoreboardApi
{
using ScoreboardApi.Objects;
public interface IPointsCalculator
{
int GetEventScore(EventType eventType);
int CalculateNewScore(EventType eventType, int currentScore);
}
}