mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-09 06:37:58 -05:00
11 lines
322 B
C#
11 lines
322 B
C#
using IW4MAdmin.Plugins.Stats.Client.Game;
|
|
using SharedLibraryCore;
|
|
using SharedLibraryCore.Interfaces;
|
|
|
|
namespace Stats.Client.Abstractions
|
|
{
|
|
public interface IHitInfoBuilder
|
|
{
|
|
HitInfo Build(string[] log, ParserRegex parserRegex, int entityId, bool isSelf, bool isVictim, Server.Game gameName);
|
|
}
|
|
} |