1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 06:08:20 -05:00
IW4M-Admin/SharedLibraryCore/Interfaces/IEventParserConfiguration.cs
RaidMax c0f9568768 Finish RCON dynamic parser impl
Fix configuration generation bug
2019-01-27 18:41:54 -06:00

14 lines
385 B
C#

namespace SharedLibraryCore.Interfaces
{
public interface IEventParserConfiguration
{
string GameDirectory { get; set; }
ParserRegex Say { get; set; }
ParserRegex Join { get; set; }
ParserRegex Quit { get; set; }
ParserRegex Kill { get; set; }
ParserRegex Damage { get; set; }
ParserRegex Action { get; set; }
}
}