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