package net.minecraft.client.renderer.entity; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.minecraft.client.renderer.texture.TextureAtlas; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.entity.Entity; @Environment(EnvType.CLIENT) public class NoopRenderer extends EntityRenderer { public NoopRenderer(EntityRendererProvider.Context context) { super(context); } @Override public ResourceLocation getTextureLocation(T entity) { return TextureAtlas.LOCATION_BLOCKS; } }