MoonWorksTest/src/PositionTexture.cs

13 lines
235 B
C#
Raw Permalink Normal View History

2021-01-20 04:08:29 +00:00
using System.Runtime.InteropServices;
2022-03-02 23:41:52 +00:00
using MoonWorks.Math;
2021-01-20 04:08:29 +00:00
namespace MoonWorksTest
{
[StructLayout(LayoutKind.Sequential)]
2022-03-02 23:41:52 +00:00
struct PositionTexture
2021-01-20 04:08:29 +00:00
{
2022-03-02 23:41:52 +00:00
public Vector3 Position;
public Vector2 Texture;
2021-01-20 04:08:29 +00:00
}
}