Campari/src/State/VertexInputState.cs

11 lines
201 B
C#
Raw Permalink Normal View History

2021-01-15 03:14:56 +00:00
using RefreshCS;
2021-01-15 01:25:15 +00:00
namespace Campari
{
public struct VertexInputState
{
2021-01-15 03:14:56 +00:00
public Refresh.VertexBinding[] VertexBindings;
public Refresh.VertexAttribute[] VertexAttributes;
2021-01-15 01:25:15 +00:00
}
}