recrownedgtk/RecrownedGTK/Graphics/VertexInformation.cs
Harrison 04f9aab10b Added documentation.
Added more documentation.

Corrected doc.
2020-04-04 18:24:25 -05:00

12 lines
311 B
C#

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