namespace MoonWorks.Graphics { /// /// Can be defined on your struct type to enable simplified vertex input state definition. /// public interface IVertexType { /// /// An ordered list of the types in your vertex struct. /// static abstract VertexElementFormat[] Formats { get; } } }