package mightypork.gamecore.core.init; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Indicates that an {@link InitTask} can safely be ignored if it's dependencies * are not satisfied. * * @author Ondřej Hruška (MightyPork) */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Documented @Inherited public @interface OptionalInitTask { // }