opengl-playground/include/opengl-playground/vertex.hpp

14 lines
164 B
C++

#ifndef VERTEX_H
#define VERTEX_H
#include <glm/glm.hpp>
struct Vertex
{
glm::vec3 Position;
glm::vec3 Normal;
glm::vec2 TextureCoords;
};
#endif // VERTEX_H