mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-03-22 11:07:13 +01:00
21 lines
533 B
Java
21 lines
533 B
Java
package com.minelittlepony.render.model;
|
|
|
|
import net.minecraft.client.model.ModelBase;
|
|
|
|
import com.minelittlepony.util.render.AbstractBoxRenderer;
|
|
|
|
public class PonyRenderer extends AbstractBoxRenderer<PonyRenderer> {
|
|
|
|
public PonyRenderer(ModelBase model) {
|
|
super(model);
|
|
}
|
|
|
|
public PonyRenderer(ModelBase model, int texX, int texY) {
|
|
super(model, texX, texY);
|
|
}
|
|
|
|
@Override
|
|
protected PonyRenderer copySelf() {
|
|
return new PonyRenderer(baseModel, textureOffsetX, textureOffsetY);
|
|
}
|
|
}
|