MoonWorks/src/Graphics/IVertexType.cs

8 lines
126 B
C#
Raw Normal View History

namespace MoonWorks.Graphics
{
public interface IVertexType
{
2023-01-05 21:41:48 +00:00
static abstract VertexElementFormat[] Formats { get; }
}
}