2020-02-20 19:49:36 +00:00
|
|
|
using OpenTK;
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
namespace RecrownedGTK.Graphics {
|
|
|
|
public struct VertexInformation {
|
2020-02-20 21:04:59 +00:00
|
|
|
public Vector3 coords;
|
2020-02-20 19:49:36 +00:00
|
|
|
public Color4 color;
|
|
|
|
public Vector2 textureCoords;
|
|
|
|
}
|
|
|
|
}
|