aboutsummaryrefslogtreecommitdiff
path: root/include/mgl/graphics/vertex.h
blob: 69400b4e5c72d43a5760243382919ab8a8a49c98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MGL_VERTEX_H
#define MGL_VERTEX_H

#include "color.h"
#include "../system/vec.h"

typedef struct {
    mgl_vec2f position;
    mgl_vec2f texcoords;
    mgl_color color;
} mgl_vertex;

#endif /* MGL_VERTEX_H */