recrownedgtk/RecrownedGTK/Graphics/VertexInformation.cs
Harrison 519d31f2e1 Another restructure with code updates.
Updated RectTextrue.cs, VertexInformation.cs, and IDrawable.cs to properly pass indice information.
2020-02-20 18:07:17 -05:00

9 lines
214 B
C#

using OpenTK;
using OpenTK.Graphics;
namespace RecrownedGTK.Graphics {
public struct VertexInformation {
public Vector3 coords;
public Color4 color;
public Vector2 textureCoords;
}
}