Add @ForgeEvent

This commit is contained in:
shedaniel
2020-11-15 22:44:31 +08:00
parent 55b3ceb925
commit 4abfb2b6d2

View File

@@ -0,0 +1,11 @@
package me.shedaniel.architectury;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ForgeEvent {
}