1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

detect headshots for CSGO on advanced stats

track say_team events for CSGO
This commit is contained in:
RaidMax
2021-07-10 21:37:51 -05:00
parent 7a9704b1dc
commit 667bba8819
6 changed files with 26 additions and 22 deletions

View File

@ -1,10 +1,11 @@
using IW4MAdmin.Plugins.Stats.Client.Game;
using SharedLibraryCore;
using SharedLibraryCore.Interfaces;
namespace Stats.Client.Abstractions
{
public interface IHitInfoBuilder
{
HitInfo Build(string[] log, int entityId, bool isSelf, bool isVictim, Server.Game gameName);
HitInfo Build(string[] log, ParserRegex parserRegex, int entityId, bool isSelf, bool isVictim, Server.Game gameName);
}
}