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