0d8940899c
Added blank Access Transformer config for Forge Implemented version storage Added basic dummy FML mod container to remove the need for mod metadata file Added beggining work on Forge event system Updated and moved EnumHelper
15 lines
423 B
Java
15 lines
423 B
Java
package net.minecraftforge.event;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
import static java.lang.annotation.RetentionPolicy.*;
|
|
import static java.lang.annotation.ElementType.*;
|
|
|
|
@Retention(value = RUNTIME)
|
|
@Target(value = METHOD)
|
|
public @interface ForgeSubscribe
|
|
{
|
|
public EventPriority priority() default EventPriority.NORMAL;
|
|
public boolean receiveCanceled() default false;
|
|
}
|