ca535019c6
Fix configuration generation bug
12 lines
271 B
C#
12 lines
271 B
C#
using SharedLibraryCore.RCon;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IRConParserConfiguration
|
|
{
|
|
CommandPrefix CommandPrefixes { get; set; }
|
|
Server.Game GameName { get; set; }
|
|
ParserRegex Status { get; set; }
|
|
}
|
|
}
|