package dev.zontreck.eventsbus.events; import dev.zontreck.eventsbus.annotations.Cancellable; import dev.zontreck.eventsbus.Event; /** * Posted when the event bus is about to be reset. *

* This event can be cancelled to prevent the reset. *

* The default behavior is: Allow Reset. *

* Recommended that handlers be implemented to re-register instances, and classes when a reset occurs. */ @Cancellable public class ResetEventBusEvent extends Event { }