aboutsummaryrefslogtreecommitdiff
#ifndef VERTEX_H
#define VERTEX_H

#include <GL/glew.h>
#include "../math/vector.h"

typedef struct
{
    Vec3 position;
    Vec2 texCoord;
    Vec3 normal;
    Vec3 tangent;
} vertex_t;

#endif // VERTEX_H