mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
16 lines
413 B
C#
16 lines
413 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IPlugin
|
|
{
|
|
string Name { get; }
|
|
float Version { get; }
|
|
string Author { get; }
|
|
bool IsParser => false;
|
|
Task OnLoadAsync(IManager manager);
|
|
Task OnUnloadAsync();
|
|
Task OnEventAsync(GameEvent gameEvent, Server server);
|
|
Task OnTickAsync(Server S);
|
|
}
|
|
} |