mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-12 08:08:06 -05:00
Various fixes and renamed 'libary' to 'library'
This commit is contained in:
19
SharedLibrary/Plugin.cs
Normal file
19
SharedLibrary/Plugin.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace SharedLibrary
|
||||
{
|
||||
public abstract class Plugin
|
||||
{
|
||||
public abstract void onLoad();
|
||||
public abstract void onUnload();
|
||||
public abstract void onEvent(Event E);
|
||||
|
||||
//for logging purposes
|
||||
public abstract String Name { get; }
|
||||
public abstract float Version { get; }
|
||||
public abstract String Author { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user