mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-16 06:13:50 +00:00
11 lines
305 B
C#
11 lines
305 B
C#
|
|
namespace Minecraft.Server.FourKit.Event;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Base class for all events dispatched by the server.
|
||
|
|
/// </summary>
|
||
|
|
public abstract class Event
|
||
|
|
{
|
||
|
|
/// <summary>Gets the name of this event (defaults to the class name).</summary>
|
||
|
|
public virtual string getEventName() => GetType().Name;
|
||
|
|
}
|