Files
FluckyGameOpenGL/vertex.h
Daniel Brunner d3779b8e64 Added Vertex
2017-08-16 21:45:00 +02:00

21 lines
307 B
C++

#ifndef VERTEX_H
#define VERTEX_H
#include <glm/glm.hpp>
class Vertex
{
public:
explicit Vertex(const glm::vec3 &pos);
virtual ~Vertex();
private:
//disable copy
Vertex(const Vertex &) = delete;
Vertex &operator=(const Vertex &) = delete;
glm::vec3 m_pos;
};
#endif // VERTEX_H