mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
13 lines
344 B
C#
13 lines
344 B
C#
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IEventParserConfiguration
|
|
{
|
|
string GameDirectory { get; set; }
|
|
ParserRegex Say { get; set; }
|
|
ParserRegex Join { get; set; }
|
|
ParserRegex Quit { get; set; }
|
|
ParserRegex Kill { get; set; }
|
|
ParserRegex Damage { get; set; }
|
|
}
|
|
}
|