mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
17 lines
412 B
C#
17 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IEventParserConfiguration
|
|
{
|
|
string GameDirectory { get; set; }
|
|
string SayRegex { get; set; }
|
|
string JoinRegex { get; set; }
|
|
string QuitRegex { get; set; }
|
|
string KillRegex { get; set; }
|
|
string DamageRegex { get; set; }
|
|
}
|
|
}
|