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