feat: delete basics
This commit is contained in:
@@ -1,21 +0,0 @@
|
|||||||
#ifndef RENDERER_BASICS_H
|
|
||||||
#define RENDERER_BASICS_H
|
|
||||||
|
|
||||||
#include <glm/glm.hpp>
|
|
||||||
|
|
||||||
namespace Core {
|
|
||||||
|
|
||||||
class Vertex {
|
|
||||||
friend class Mesh;
|
|
||||||
private:
|
|
||||||
glm::vec3 m_position;
|
|
||||||
glm::vec3 m_normal;
|
|
||||||
glm::vec2 m_texCoord;
|
|
||||||
public:
|
|
||||||
Vertex(glm::vec3 position, glm::vec3 normal, glm::vec2 texCoord)
|
|
||||||
: m_position(position), m_normal(normal), m_texCoord(texCoord) {}
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // RENDERER_BASICS_H
|
|
||||||
Reference in New Issue
Block a user