Added some spell block rendering

This commit is contained in:
WayofTime 2014-02-06 22:17:22 -05:00
parent bdf9760e8a
commit 456d4990bf
11 changed files with 633 additions and 9 deletions

View file

@ -1,11 +1,12 @@
package WayofTime.alchemicalWizardry.common.tileEntity;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.block.IOrientable;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.packet.Packet;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.common.ForgeDirection;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.block.IOrientable;
public class TEOrientable extends TileEntity implements IOrientable
{
@ -99,4 +100,9 @@ public class TEOrientable extends TileEntity implements IOrientable
}
return false;
}
public String getResourceLocationForMeta(int meta)
{
return "";
}
}