Updated Metallurgy 3 API

This commit is contained in:
Aidan Brady 2013-06-07 11:43:40 -04:00
parent 5b6aa2a2b8
commit 29240c65fe
2 changed files with 8 additions and 0 deletions

View file

@ -7,6 +7,8 @@ public interface IOreInfo
public String getName();
public OreType getType();
public boolean isEnabled();
public ItemStack getOre();
public ItemStack getBlock();
public ItemStack getBrick();

View file

@ -31,4 +31,10 @@ public class MetallurgyAPI
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;
}
}