2019-01-26 20:33:37 -06:00
|
|
|
|
using SharedLibraryCore.RCon;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IRConParserConfiguration
|
|
|
|
|
{
|
|
|
|
|
CommandPrefix CommandPrefixes { get; set; }
|
|
|
|
|
Server.Game GameName { get; set; }
|
2019-01-27 18:41:54 -06:00
|
|
|
|
ParserRegex Status { get; set; }
|
2019-02-01 19:49:25 -06:00
|
|
|
|
ParserRegex Dvar { get; set; }
|
2019-01-26 20:33:37 -06:00
|
|
|
|
}
|
|
|
|
|
}
|