all plugins loaded event (#14)

* all plugins loaded event

* oops
This commit is contained in:
DrPerkyLegit 2026-04-06 16:05:42 -04:00 committed by GitHub
parent 098582dea8
commit e0b6c4e873
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,10 @@
namespace Minecraft.Server.FourKit.Event.Server;
using Minecraft.Server.FourKit.Plugin;
public class PluginsLoadedEvent : ServerEvent
{
internal PluginsLoadedEvent() : base()
{
}
}

View file

@ -72,6 +72,7 @@ internal sealed class PluginLoader
}
}
}
FourKit.FireEvent(new PluginsLoadedEvent());
}
private void LoadPluginAssembly(string dllPath)