MoonWorksTest/src/Vertex.cs

12 lines
196 B
C#

using System.Runtime.InteropServices;
namespace MoonWorksTest
{
[StructLayout(LayoutKind.Sequential)]
struct Vertex
{
public float x, y, z;
public float u, v;
}
}