using Microsoft.Extensions.Logging;
using SharedLibraryCore.Interfaces;
namespace IW4MAdmin.Application.RconParsers
{
///
/// empty implementation of the IW4RConParser
/// allows script plugins to generate dynamic RCon parsers
///
sealed internal class DynamicRConParser : BaseRConParser
{
public DynamicRConParser(ILogger logger, IParserRegexFactory parserRegexFactory) : base(logger, parserRegexFactory)
{
}
}
}