mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-11 06:24:14 -05:00
14 lines
309 B
C#
14 lines
309 B
C#
namespace MKDS_Course_Editor.Export3DTools
|
|
{
|
|
using System.Windows;
|
|
using System.Windows.Media.Media3D;
|
|
|
|
public class Quad : Face
|
|
{
|
|
public Vector3D[] Normal = new Vector3D[4];
|
|
public Point[] TexCoord = new Point[4];
|
|
public Point3D[] Vertex = new Point3D[4];
|
|
}
|
|
}
|
|
|