IW4M-Admin/Application/EventParsers/DynamicEventParserConfiguration.cs
RaidMax 7a6dccc26a Fix bug with webfront spamming issues when running
Remove IW5 parser
Begin implementation of dynamic parsers
2019-01-26 20:33:37 -06:00

15 lines
452 B
C#

using SharedLibraryCore.Interfaces;
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; }
}
}