mirror of
https://github.com/Wincent01/InfectedRose.git
synced 2025-12-17 10:05:47 -06:00
15 lines
302 B
C#
15 lines
302 B
C#
using System.Numerics;
|
|
|
|
namespace InfectedRose.Geometry
|
|
{
|
|
public class Mesh
|
|
{
|
|
public Vector3[] Vertices { get; set; }
|
|
|
|
public Vector3[] Normals { get; set; }
|
|
|
|
public Vector2[] Uv { get; set; }
|
|
|
|
public int[] Triangles { get; set; }
|
|
}
|
|
} |