11 lines
244 B
C#
11 lines
244 B
C#
namespace ScoreboardApi
|
|
{
|
|
using ScoreboardApi.Objects;
|
|
|
|
public interface IPointsCalculator
|
|
{
|
|
int GetEventScore(EventType eventType);
|
|
|
|
int CalculateNewScore(EventType eventType, int currentScore);
|
|
}
|
|
} |