001package net.minecraftforge.client.model;
002
003
004
005public interface IModelCustom {
006    String getType();
007    void renderAll();
008    void renderPart(String partName);
009}