mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
Implement more dynamic parser stuff
This commit is contained in:
@ -5,10 +5,20 @@ namespace IW4MAdmin.Application.EventParsers
|
||||
class DynamicEventParserConfiguration : IEventParserConfiguration
|
||||
{
|
||||
public string GameDirectory { get; set; }
|
||||
public string SayRegex { get; set; }
|
||||
public string JoinRegex { get; set; }
|
||||
public string QuitRegex { get; set; }
|
||||
public string KillRegex { get; set; }
|
||||
public string DamageRegex { get; set; }
|
||||
|
||||
public ParserRegex Say { get; set; }
|
||||
public ParserRegex Join { get; set; }
|
||||
public ParserRegex Quit { get; set; }
|
||||
public ParserRegex Kill { get; set; }
|
||||
public ParserRegex Damage { get; set; }
|
||||
|
||||
public DynamicEventParserConfiguration()
|
||||
{
|
||||
Say = new ParserRegex();
|
||||
Join = new ParserRegex();
|
||||
Quit = new ParserRegex();
|
||||
Kill = new ParserRegex();
|
||||
Damage = new ParserRegex();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user