Arcturus-Community/src/main/java/com/eu/habbo/plugin/EventHandler.java

19 lines
400 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.plugin;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface EventHandler {
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
EventPriority priority() default EventPriority.NORMAL;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
boolean ignoreCancelled() default false;
}