BloodMagic/BM_src/forestry/api/recipes/IGenericCrate.java
2014-01-25 20:36:28 -05:00

12 lines
207 B
Java

package forestry.api.recipes;
import net.minecraft.item.ItemStack;
public interface IGenericCrate {
void setContained(ItemStack crate, ItemStack contained);
ItemStack getContained(ItemStack crate);
}