public ModelRenderer getModelRenderer(ModelBase model, String modelPart) { if (!(model instanceof ModelLeashKnot)) { return null; } else { ModelLeashKnot modelleashknot = (ModelLeashKnot)model; return modelPart.equals("knot") ? modelleashknot.knotRenderer : null; } }
public ModelBase makeModel() { return new ModelLeashKnot(); }