Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/asefile.h')
-rw-r--r--src/model/asefile.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/model/asefile.h b/src/model/asefile.h
index 7f5ab03..dc1516b 100644
--- a/src/model/asefile.h
+++ b/src/model/asefile.h
@@ -55,6 +55,16 @@ private:
bool read_mesh_vertex_list(std::istream &is);
/**
+ * @brief read *MESH_TVERTLIST
+ */
+ bool read_mesh_tvertex_list(std::istream &is);
+
+ /**
+ * @brief read *MESH_TFACELIST
+ */
+ bool read_mesh_tface_list(std::istream &is);
+
+ /**
* @brief read *MESH
*/
bool read_mesh(std::istream &is);
@@ -84,6 +94,8 @@ private:
VertexList ase_vertexlist;
+ VertexList ase_tvertexlist;
+
FaceList ase_facelist;
math::Vector3f ase_maxbbox;