BloodMagic/src/main/java/WayofTime/bloodmagic/annot/Handler.java

16 lines
433 B
Java
Raw Normal View History

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;
/**
* 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 {
}