17 lines
414 B
C#
Raw Normal View History

using System.Threading.Tasks;
2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore.Interfaces
{
public interface IPlugin
{
2022-01-26 10:32:16 -06:00
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);
}
2023-04-04 18:24:13 -05:00
}