mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-13 12:43:51 +00:00
17 lines
411 B
C#
17 lines
411 B
C#
|
|
namespace Minecraft.Server.FourKit.Event.Server;
|
|||
|
|
|
|||
|
|
using Minecraft.Server.FourKit.Plugin;
|
|||
|
|
|
|||
|
|
public abstract class PluginEvent : ServerEvent
|
|||
|
|
{
|
|||
|
|
private readonly ServerPlugin _plugin;
|
|||
|
|
|
|||
|
|
internal protected PluginEvent(ServerPlugin plugin) : base()
|
|||
|
|
{
|
|||
|
|
_plugin = plugin;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>Returns the plugin involved in this event.</summary>
|
|||
|
|
public ServerPlugin getPlugin() => _plugin;
|
|||
|
|
}
|