2013-03-11 00:05:11 -07:00

13 lines
261 B
Java

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