001package cpw.mods.fml.relauncher;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008
009@Retention(RetentionPolicy.RUNTIME)
010@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR})
011public @interface SideOnly
012{
013    public Side value();
014}