namespace Minecraft.Server.FourKit.Event; /// /// Interface for events that can be cancelled by a plugin. /// When cancelled, the server will skip the default action. /// public interface Cancellable { /// Gets whether this event is cancelled. bool isCancelled(); /// Sets whether this event is cancelled. void setCancelled(bool cancel); }