2020-02-20 19:49:36 +00:00
|
|
|
using OpenTK;
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
namespace RecrownedGTK.Graphics {
|
2020-04-04 22:35:06 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Stores the information that is required per vertex.
|
|
|
|
/// </summary>
|
2020-02-20 19:49:36 +00:00
|
|
|
public struct VertexInformation {
|
2020-02-20 21:04:59 +00:00
|
|
|
public Vector3 coords;
|
2020-02-20 19:49:36 +00:00
|
|
|
public Vector2 textureCoords;
|
2020-03-01 23:09:21 +00:00
|
|
|
public Color4 color;
|
2020-02-20 19:49:36 +00:00
|
|
|
}
|
|
|
|
}
|