blob: 98158fafaa37518e29f631091774e93026936b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef ENGINE_VERTEX_H
#define ENGINE_VERTEX_H
#include <glm/glm.hpp>
typedef struct {
glm::vec3 pos_coords;
glm::vec2 tex_coords;
} Vertex;
#endif /* ENGINE_VERTEX_H */
|