2021-03-22 12:09:25 -04:00
|
|
|
|
using IW4MAdmin.Plugins.Stats.Client.Game;
|
|
|
|
|
using SharedLibraryCore;
|
2021-07-10 22:37:51 -04:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2021-03-22 12:09:25 -04:00
|
|
|
|
|
|
|
|
|
namespace Stats.Client.Abstractions
|
|
|
|
|
{
|
|
|
|
|
public interface IHitInfoBuilder
|
|
|
|
|
{
|
2021-07-10 22:37:51 -04:00
|
|
|
|
HitInfo Build(string[] log, ParserRegex parserRegex, int entityId, bool isSelf, bool isVictim, Server.Game gameName);
|
2021-03-22 12:09:25 -04:00
|
|
|
|
}
|
|
|
|
|
}
|