2020-11-11 17:31:26 -06:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2020-04-01 14:11:56 -05:00
|
|
|
|
|
2021-06-03 10:51:03 -05:00
|
|
|
|
namespace IW4MAdmin.Application.RConParsers
|
2019-01-26 20:33:37 -06:00
|
|
|
|
{
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// empty implementation of the IW4RConParser
|
|
|
|
|
/// allows script plugins to generate dynamic RCon parsers
|
|
|
|
|
/// </summary>
|
2021-06-03 10:51:03 -05:00
|
|
|
|
internal sealed class DynamicRConParser : BaseRConParser
|
2019-01-26 20:33:37 -06:00
|
|
|
|
{
|
2020-11-11 17:31:26 -06:00
|
|
|
|
public DynamicRConParser(ILogger<BaseRConParser> logger, IParserRegexFactory parserRegexFactory) : base(logger, parserRegexFactory)
|
2020-04-01 14:11:56 -05:00
|
|
|
|
{
|
|
|
|
|
}
|
2019-01-26 20:33:37 -06:00
|
|
|
|
}
|
|
|
|
|
}
|