MoonWorksImGuiExample/src/VertexPositionTextureColor.cs

13 lines
211 B
C#
Raw Normal View History

2022-03-04 01:42:00 +00:00
using MoonWorks.Graphics;
2022-03-04 01:20:00 +00:00
using MoonWorks.Math;
2022-03-04 01:21:42 +00:00
namespace MoonWorksImGuiExample
2022-03-04 01:20:00 +00:00
{
public struct VertexPositionTextureColor
{
public Vector2 Position;
public Vector2 Texture;
public Color Color;
}
}