mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-04-25 08:27:28 +00:00
* PlayerPreLoginEvent, comments for more events * basic plugin events * plugin failed to load event * add docs --------- Co-authored-by: sylvessa <225480449+sylvessa@users.noreply.github.com>
12 lines
224 B
C#
12 lines
224 B
C#
namespace Minecraft.Server.FourKit.Event.Server;
|
|
|
|
using Minecraft.Server.FourKit.Plugin;
|
|
|
|
public class PluginDisableEvent : PluginEvent
|
|
{
|
|
|
|
internal PluginDisableEvent(ServerPlugin plugin) : base(plugin)
|
|
{
|
|
}
|
|
}
|