unlogic
Loading...
Searching...
No Matches
Vertex.h
Go to the documentation of this file.
1#ifndef UNLOGIC_VERTEX_H
2#define UNLOGIC_VERTEX_H
3
4#include <glm/glm.hpp>
5#include "graphic/Color.h"
6
7namespace unlogic
8{
9 struct Vertex
10 {
11 glm::vec2 position;
13 };
14}
15
16#endif //UNLOGIC_VERTEX_H
Color color
Definition Vertex.h:12
glm::vec2 position
Definition Vertex.h:11