BloodMagic/src/main/java/WayofTime/bloodmagic/annot/Handler.java
Nicholas Ignoffo 08258fd6ef Run formatter
2017-08-15 21:30:56 -07:00

16 lines
433 B
Java

package WayofTime.bloodmagic.annot;
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}.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Handler {
}