MoonWorks/src/Graphics/IVertexType.cs

8 lines
119 B
C#

namespace MoonWorks.Graphics
{
public interface IVertexType
{
VertexAttribute[] Attributes(uint binding = 0);
}
}