IW4M-Admin/Plugins/Stats/Client/Abstractions/IClientStatisticCalculator.cs

11 lines
264 B
C#
Raw Normal View History

using System.Threading.Tasks;
using SharedLibraryCore;
namespace IW4MAdmin.Plugins.Stats.Client.Abstractions
{
public interface IClientStatisticCalculator
{
Task GatherDependencies();
Task CalculateForEvent(GameEvent gameEvent);
}
}