2013-02-11 12:25:40 -08:00

13 lines
256 B
Java

package tinker.tconstruct.client.tmt;
public class Shape3D
{
public Shape3D(PositionTransformVertex[] verts, TexturedPolygon[] poly)
{
vertices = verts;
faces = poly;
}
public PositionTransformVertex[] vertices;
public TexturedPolygon[] faces;
}