package mightypork.gamecore.control.bus.events.types; import java.lang.annotation.*; /** * Event that's not worth logging, unless there was an error with it.
* Useful for common events that would otherwise clutter the log. * * @author MightyPork */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited @Documented public @interface UnloggedEvent {}