2019-01-26 21:33:37 -05:00
|
|
|
|
using SharedLibraryCore;
|
|
|
|
|
using SharedLibraryCore.Interfaces;
|
|
|
|
|
using SharedLibraryCore.RCon;
|
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin.Application.RconParsers
|
|
|
|
|
{
|
|
|
|
|
class DynamicRConParserConfiguration : IRConParserConfiguration
|
|
|
|
|
{
|
|
|
|
|
public CommandPrefix CommandPrefixes { get; set; }
|
|
|
|
|
public Server.Game GameName { get; set; }
|
2019-01-27 19:41:54 -05:00
|
|
|
|
public ParserRegex Status { get; set; } = new ParserRegex();
|
2019-01-26 21:33:37 -05:00
|
|
|
|
}
|
|
|
|
|
}
|