FastTESR -> TileEntityRendererFast

This commit is contained in:
tterrag 2018-12-21 17:53:01 -05:00
parent b3b8c78527
commit d11a67499d
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ import org.apache.commons.lang3.tuple.Pair;
/**
* Generic TileEntitySpecialRenderer that works with the Forge model system and animations.
*/
public class AnimationTESR<T extends TileEntity> extends FastTESR<T> implements IEventHandler<T>
public class AnimationTESR<T extends TileEntity> extends TileEntityRendererFast<T> implements IEventHandler<T>
{
protected static BlockRendererDispatcher blockRenderer;

View File

@ -31,7 +31,7 @@ import net.minecraft.client.renderer.tileentity.TileEntityRenderer;
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
import net.minecraft.tileentity.TileEntity;
public abstract class FastTESR<T extends TileEntity> extends TileEntityRenderer<T>
public abstract class TileEntityRendererFast<T extends TileEntity> extends TileEntityRenderer<T>
{
@Override
public final void render(T te, double x, double y, double z, float partialTicks, int destroyStage)