2013-12-27 23:59:59 +01:00
|
|
|
package appeng.facade;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public interface IFacadeItem
|
|
|
|
{
|
|
|
|
|
|
|
|
FacadePart createPartFromItemStack(ItemStack is, ForgeDirection side);
|
|
|
|
|
|
|
|
ItemStack getTextureItem(ItemStack is);
|
|
|
|
|
|
|
|
int getMeta(ItemStack is);
|
|
|
|
|
|
|
|
Block getBlock(ItemStack is);
|
|
|
|
|
|
|
|
}
|