recrownedgtk/RecrownedGTK/Graphics/VertexInformation.cs

10 lines
251 B
C#
Raw Normal View History

2020-02-20 19:49:36 +00:00
using OpenTK;
using OpenTK.Graphics;
namespace RecrownedGTK.Graphics {
public struct VertexInformation {
public Vector3 vertexCoords;
public uint[] indices;
public Color4 color;
public Vector2 textureCoords;
}
}