Fix retention for @Handler
This commit is contained in:
parent
2ad836fa32
commit
c884c3819b
1 changed files with 7 additions and 0 deletions
|
@ -1,8 +1,15 @@
|
||||||
package WayofTime.bloodmagic.annot;
|
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
|
* Classes annotated with this will automatically be registered to the
|
||||||
* {@link net.minecraftforge.common.MinecraftForge#EVENT_BUS}.
|
* {@link net.minecraftforge.common.MinecraftForge#EVENT_BUS}.
|
||||||
*/
|
*/
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.TYPE)
|
||||||
public @interface Handler {
|
public @interface Handler {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue