IW4M-Admin/Application/EventParsers/DynamicEventParserConfiguration.cs

25 lines
714 B
C#
Raw Normal View History

using SharedLibraryCore.Interfaces;
namespace IW4MAdmin.Application.EventParsers
{
class DynamicEventParserConfiguration : IEventParserConfiguration
{
public string GameDirectory { get; set; }
2019-01-27 17:40:08 -05:00
public ParserRegex Say { get; set; }
public ParserRegex Join { get; set; }
public ParserRegex Quit { get; set; }
public ParserRegex Kill { get; set; }
public ParserRegex Damage { get; set; }
public DynamicEventParserConfiguration()
{
Say = new ParserRegex();
Join = new ParserRegex();
Quit = new ParserRegex();
Kill = new ParserRegex();
Damage = new ParserRegex();
}
}
}