diff options
author | chai <chaifix@163.com> | 2020-07-14 20:54:35 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2020-07-14 20:54:35 +0800 |
commit | b0235d7a0bac4994da7102887ec0ba1cd613769f (patch) | |
tree | d7315b8e99b8781e95cf9cbf016f10c989ce7afb /src/extend/mesh.h | |
parent | efe7768e5b65022b2dd418feff017b97012a6b24 (diff) |
*misc
Diffstat (limited to 'src/extend/mesh.h')
-rw-r--r-- | src/extend/mesh.h | 7 |
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); |