7a6dccc26a
Remove IW5 parser Begin implementation of dynamic parsers
14 lines
380 B
C#
14 lines
380 B
C#
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; }
|
|
public string StatusRegex { get; set; }
|
|
}
|
|
}
|