2020-07-31 20:40:03 -05:00
|
|
|
|
using SharedLibraryCore.Configuration;
|
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2019-01-26 20:33:37 -06:00
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin.Application.EventParsers
|
|
|
|
|
{
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// empty generic implementation of the IEventParserConfiguration
|
|
|
|
|
/// allows script plugins to generate dynamic event parsers
|
|
|
|
|
/// </summary>
|
|
|
|
|
sealed internal class DynamicEventParser : BaseEventParser
|
2019-01-26 20:33:37 -06:00
|
|
|
|
{
|
2020-07-31 20:40:03 -05:00
|
|
|
|
public DynamicEventParser(IParserRegexFactory parserRegexFactory, ILogger logger, ApplicationConfiguration appConfig) : base(parserRegexFactory, logger, appConfig)
|
2020-04-01 14:11:56 -05:00
|
|
|
|
{
|
|
|
|
|
}
|
2019-01-26 20:33:37 -06:00
|
|
|
|
}
|
|
|
|
|
}
|