2023-02-11 21:01:28 -06:00
|
|
|
|
using Data.Models;
|
|
|
|
|
using IW4MAdmin.Plugins.Stats.Client.Game;
|
2021-07-10 21:37:51 -05:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2021-03-22 11:09:25 -05:00
|
|
|
|
|
|
|
|
|
namespace Stats.Client.Abstractions
|
|
|
|
|
{
|
|
|
|
|
public interface IHitInfoBuilder
|
|
|
|
|
{
|
2023-02-11 21:01:28 -06:00
|
|
|
|
HitInfo Build(string[] log, ParserRegex parserRegex, int entityId, bool isSelf, bool isVictim, Reference.Game gameName);
|
2021-03-22 11:09:25 -05:00
|
|
|
|
}
|
2023-02-11 21:01:28 -06:00
|
|
|
|
}
|