1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 23:58:08 -05:00
Files
IW4M-Admin/SharedLibraryCore/Interfaces/IPlugin.cs
RaidMax 4ae3ee1683 abstract engine color codes to use (Color::<Color>) format to make codes more.
see pt6 parser and configs for example usages
2022-01-26 15:20:10 -06:00

18 lines
404 B
C#

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);
string Name { get; }
float Version { get; }
string Author { get; }
bool IsParser => false;
}
}