15 lines
307 B
C
15 lines
307 B
C
#ifndef MONS_MESH_H
|
|
#define MONS_MESH_H
|
|
|
|
struct mons_vertex;
|
|
typedef unsigned int mons_vao;
|
|
|
|
typedef struct mons_mesh {
|
|
mons_vao vao;
|
|
unsigned int element_count;
|
|
} mons_mesh;
|
|
|
|
mons_mesh mons_create_mesh(struct mons_vertex *vertex_array, int vertex_count, int *index_array, int index_count);
|
|
|
|
#endif
|