Skip to content

Instantly share code, notes, and snippets.

@adudewithapc
Created February 15, 2018 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adudewithapc/b3f9aee350de439656225714bdc4d0c9 to your computer and use it in GitHub Desktop.
Save adudewithapc/b3f9aee350de439656225714bdc4d0c9 to your computer and use it in GitHub Desktop.
package thatmartinguy.scp.client;
import net.minecraft.entity.Entity;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import net.minecraftforge.fml.client.registry.RenderingRegistry;
import thatmartinguy.scp.client.render.Render073;
import thatmartinguy.scp.entity.Entity073;
public class ModelManager
{
public static void registerModels()
{
RenderingRegistry.registerEntityRenderingHandler(Entity073.class, Render073::new);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment