2021-11-27 19:16:41 +00:00
|
|
|
#pragma once
|
2021-11-25 21:15:24 +00:00
|
|
|
|
|
|
|
#include <gl/glew.h>
|
|
|
|
#include <gl/gl.h>
|
|
|
|
|
|
|
|
#include <glm/glm.hpp>
|
|
|
|
|
|
|
|
namespace simpleengine {
|
|
|
|
class Vertex {
|
|
|
|
public:
|
|
|
|
glm::vec3 position;
|
|
|
|
glm::vec3 color;
|
|
|
|
glm::vec2 tex_coord;
|
|
|
|
};
|
2021-11-27 19:16:41 +00:00
|
|
|
}
|