mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-03-23 11:37:13 +01:00
22 lines
533 B
Java
22 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);
|
||
|
}
|
||
|
}
|