IW4M-Admin/SharedLibraryCore/Interfaces/IPlugin.cs
RaidMax 4caa4655e2 abstracting rcon parsing and event parsing
changed Event to GameEvent
finally fixed the stats NaN
check ip for bans
consolidated console, profile, and logout into dropdown
make sure game is iw4 before using :^ in say
fix pm not showing from name if in web console
show time left of temban on profile
2018-04-13 01:32:30 -05:00

19 lines
417 B
C#

using System;
using System.Threading.Tasks;
namespace SharedLibraryCore.Interfaces
{
public interface IPlugin
{
Task OnLoadAsync(IManager manager);
Task OnUnloadAsync();
Task OnEventAsync(GameEvent E, Server S);
Task OnTickAsync(Server S);
//for logging purposes
String Name { get; }
float Version { get; }
String Author { get; }
}
}