Merge branch 'feature/plugin-api' of github.com:sylvessa/MinecraftConsoles into feature/plugin-api

This commit is contained in:
sylvessa 2026-04-06 21:29:50 -05:00
commit ff7c04f253
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)