Unicopia/src/external/java/com/minelittlepony/util/render/Quad.java
2019-01-31 23:07:47 +02:00

10 lines
No EOL
394 B
Java

package com.minelittlepony.util.render;
import net.minecraft.client.model.TexturedQuad;
//#MineLittlePony#
public class Quad extends TexturedQuad {
Quad(Vertex[] vertices, int texcoordU1, int texcoordV1, int texcoordU2, int texcoordV2, float textureWidth, float textureHeight) {
super(vertices, texcoordU1, texcoordV1, texcoordU2, texcoordV2, textureWidth, textureHeight);
}
}