Changed order for clarity.

This commit is contained in:
Harrison Deng 2020-03-01 18:09:21 -05:00
parent 583988c333
commit de76a9acbf

View File

@ -3,7 +3,7 @@ using OpenTK.Graphics;
namespace RecrownedGTK.Graphics {
public struct VertexInformation {
public Vector3 coords;
public Color4 color;
public Vector2 textureCoords;
public Color4 color;
}
}