2021-03-22 12:09:25 -04:00
|
|
|
|
using System.Threading.Tasks;
|
2023-02-11 22:01:28 -05:00
|
|
|
|
using SharedLibraryCore.Events;
|
2021-03-22 12:09:25 -04:00
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Client.Abstractions
|
|
|
|
|
{
|
|
|
|
|
public interface IClientStatisticCalculator
|
|
|
|
|
{
|
|
|
|
|
Task GatherDependencies();
|
2023-02-11 22:01:28 -05:00
|
|
|
|
Task CalculateForEvent(CoreEvent coreEvent);
|
2021-03-22 12:09:25 -04:00
|
|
|
|
}
|
2023-02-11 22:01:28 -05:00
|
|
|
|
}
|