4caa4655e2
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
19 lines
417 B
C#
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; }
|
|
}
|
|
}
|