Added RitualStopEvent and RitualRunEvent

This commit is contained in:
WayofTime 2014-11-13 09:37:09 -05:00
parent f39db196ca
commit 6c4c579e89
7 changed files with 61 additions and 11 deletions
src/main/java/WayofTime/alchemicalWizardry/api/renderer

View file

@ -0,0 +1,21 @@
package WayofTime.alchemicalWizardry.api.renderer;
import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone;
import net.minecraft.client.renderer.texture.TextureManager;
import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher;
import net.minecraft.util.ResourceLocation;
public abstract class MRSRenderer
{
public abstract void renderAt(TEMasterStone tile, double x, double y, double z);
protected void bindTexture(ResourceLocation p_147499_1_)
{
TextureManager texturemanager = TileEntityRendererDispatcher.instance.field_147553_e;
if (texturemanager != null)
{
texturemanager.bindTexture(p_147499_1_);
}
}
}