1
0
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:
RaidMax
2019-01-27 16:40:08 -06:00
parent 88992d1a7b
commit ce7cf9f462
5 changed files with 153 additions and 45 deletions

View File

@ -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();
}
}
}