1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 14:18:20 -05:00
IW4M-Admin/Plugins/Stats/Client/Abstractions/IClientStatisticCalculator.cs
2023-02-11 21:01:28 -06:00

12 lines
272 B
C#

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