mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
15 lines
452 B
C#
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; }
|
|
}
|
|
}
|