buildtab: added buildable types
parent
3cc774a312
commit
a10f9bf25f
|
|
@ -5,6 +5,11 @@ import java.lang.annotation.RetentionPolicy;
|
|||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface BuildableMetadata {
|
||||
|
||||
public static int AREA = 0;
|
||||
public static int SINGLE = 1;
|
||||
|
||||
public String name();
|
||||
public String category();
|
||||
public int type() default AREA;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue