2019-01-26 21:33:37 -05:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin.Application.EventParsers
|
|
|
|
|
{
|
|
|
|
|
class DynamicEventParserConfiguration : IEventParserConfiguration
|
|
|
|
|
{
|
|
|
|
|
public string GameDirectory { get; set; }
|
2019-01-27 19:41:54 -05:00
|
|
|
|
public ParserRegex Say { get; set; } = new ParserRegex();
|
|
|
|
|
public ParserRegex Join { get; set; } = new ParserRegex();
|
|
|
|
|
public ParserRegex Quit { get; set; } = new ParserRegex();
|
|
|
|
|
public ParserRegex Kill { get; set; } = new ParserRegex();
|
|
|
|
|
public ParserRegex Damage { get; set; } = new ParserRegex();
|
|
|
|
|
public ParserRegex Action { get; set; } = new ParserRegex();
|
2019-01-26 21:33:37 -05:00
|
|
|
|
}
|
|
|
|
|
}
|