This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
SorceryCraft/src/main/java/com/thebrokenrail/sorcerycraft/client/entity/SpellEntityRenderer.java
TheBrokenRail df7826d584
All checks were successful
SorceryCraft/pipeline/head This commit looks good
1.1.9
Fix Scrolling Bug
2020-03-11 09:06:10 -04:00

20 lines
674 B
Java

package com.thebrokenrail.sorcerycraft.client.entity;
import com.thebrokenrail.sorcerycraft.entity.SpellEntity;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.render.entity.EntityRenderDispatcher;
import net.minecraft.client.render.entity.EntityRenderer;
import net.minecraft.util.Identifier;
@Environment(EnvType.CLIENT)
public class SpellEntityRenderer extends EntityRenderer<SpellEntity> {
public SpellEntityRenderer(EntityRenderDispatcher entityRenderDispatcher) {
super(entityRenderDispatcher);
}
@Override
public Identifier getTexture(SpellEntity spellEntity) {
return null;
}
}