summaryrefslogtreecommitdiff
path: root/src/extend/mesh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/extend/mesh.h')
-rw-r--r--src/extend/mesh.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/extend/mesh.h b/src/extend/mesh.h
index aa2a398..b9b07f8 100644
--- a/src/extend/mesh.h
+++ b/src/extend/mesh.h
@@ -3,10 +3,11 @@
#include "../core/vert.h"
-//
typedef struct Mesh {
- Vert* vertices; uint vert_count;
- uint* triangles; uint tris_count;
+ Vert* vertices;
+ uint vert_count;
+ uint* triangles;
+ uint tris_count;
} Mesh;
Mesh* mesh_loadfromobj(const char* path);