namespace Minecraft.Server.FourKit.Event;
///
/// Base class for all events dispatched by the server.
///
public abstract class Event
{
/// Gets the name of this event (defaults to the class name).
public virtual string getEventName() => GetType().Name;
}