IW4M-Admin/SharedLibraryCore/Interfaces/IEventParserConfiguration.cs

35 lines
1.3 KiB
C#
Raw Permalink Normal View History

2019-01-27 17:40:08 -05:00
namespace SharedLibraryCore.Interfaces
{
public interface IEventParserConfiguration
{
/// <summary>
/// stores the fs_game directory (this folder may vary between different clients)
/// </summary>
string GameDirectory { get; set; }
/// <summary>
/// stores the regex information for a say event printed in the game log
/// </summary>
2019-01-27 17:40:08 -05:00
ParserRegex Say { get; set; }
/// <summary>
/// stores the regex information for a join event printed in the game log
/// </summary>
2019-01-27 17:40:08 -05:00
ParserRegex Join { get; set; }
/// <summary>
/// stores the regex information for a quit event printed in the game log
/// </summary>
2019-01-27 17:40:08 -05:00
ParserRegex Quit { get; set; }
/// <summary>
/// stores the regex information for a kill event printed in the game log
/// </summary>
2019-01-27 17:40:08 -05:00
ParserRegex Kill { get; set; }
/// <summary>
/// stores the regex information for a damage event printed in the game log
/// </summary>
2019-01-27 17:40:08 -05:00
ParserRegex Damage { get; set; }
/// <summary>
/// stores the regex information for an action event printed in the game log
/// </summary>
ParserRegex Action { get; set; }
}
}