Updated Metallurgy 3 API
This commit is contained in:
parent
5b6aa2a2b8
commit
29240c65fe
2 changed files with 8 additions and 0 deletions
|
@ -7,6 +7,8 @@ public interface IOreInfo
|
||||||
public String getName();
|
public String getName();
|
||||||
public OreType getType();
|
public OreType getType();
|
||||||
|
|
||||||
|
public boolean isEnabled();
|
||||||
|
|
||||||
public ItemStack getOre();
|
public ItemStack getOre();
|
||||||
public ItemStack getBlock();
|
public ItemStack getBlock();
|
||||||
public ItemStack getBrick();
|
public ItemStack getBrick();
|
||||||
|
|
|
@ -31,4 +31,10 @@ public class MetallurgyAPI
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
public static String[] getMetalSetNames()
|
||||||
|
{
|
||||||
|
// TODO maybe put something to get runtime list here
|
||||||
|
String[] names = {"base", "precious", "nether", "fantasy", "ender", "utility"};
|
||||||
|
return names;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue