MoonWorksTest/src/Vertex.cs

12 lines
196 B
C#
Raw Normal View History

2021-01-20 04:08:29 +00:00
using System.Runtime.InteropServices;
namespace MoonWorksTest
{
[StructLayout(LayoutKind.Sequential)]
struct Vertex
{
public float x, y, z;
public float u, v;
}
}