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(IParserRegexFactory parserRegexFactory) : base(parserRegexFactory) { } } }