using OpenTK; using OpenTK.Graphics; namespace RecrownedGTK.Graphics { /// /// Stores the information that is required per vertex. /// public struct VertexInformation { public Vector3 coords; public Vector2 textureCoords; public Color4 color; } }