2016-05-31 01:20:31 +00:00
|
|
|
package WayofTime.bloodmagic.annot;
|
|
|
|
|
2016-06-01 23:01:36 +00:00
|
|
|
import java.lang.annotation.ElementType;
|
|
|
|
import java.lang.annotation.Retention;
|
|
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
import java.lang.annotation.Target;
|
|
|
|
|
2016-05-31 01:20:31 +00:00
|
|
|
/**
|
|
|
|
* Classes annotated with this will automatically be registered to the
|
|
|
|
* {@link net.minecraftforge.common.MinecraftForge#EVENT_BUS}.
|
|
|
|
*/
|
2016-06-01 23:01:36 +00:00
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
@Target(ElementType.TYPE)
|
2017-08-16 04:30:48 +00:00
|
|
|
public @interface Handler {
|
2016-05-31 01:20:31 +00:00
|
|
|
}
|