mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-15 17:50:19 -05:00
Almost finished moving Webfront to a plugin.
This commit is contained in:
17
SharedLibary/Plugin.cs
Normal file
17
SharedLibary/Plugin.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace SharedLibrary
|
||||
{
|
||||
public abstract class Plugin
|
||||
{
|
||||
public abstract void onLoad();
|
||||
}
|
||||
|
||||
public abstract class Notify : Plugin
|
||||
{
|
||||
public abstract void onEvent(Event E);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user