MoonWorks/src/Graphics/State/VertexInputState.cs

11 lines
212 B
C#

using RefreshCS;
namespace MoonWorks.Graphics
{
public struct VertexInputState
{
public Refresh.VertexBinding[] VertexBindings;
public Refresh.VertexAttribute[] VertexAttributes;
}
}