Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-11-16 18:25:03 +0000
committerStijn Buys <ingar@osirion.org>2013-11-16 18:25:03 +0000
commit302f11ce816ffe4b51f48c42972bb58475bcca5d (patch)
treef7d4969f7b3abe27e069589bcebc99a14d70e523 /src/model/mapfile.h
parent359f98adee3e0308dcd92dc59b68f699527d1acb (diff)
Material API cleanups,
added support for bounds materials.
Diffstat (limited to 'src/model/mapfile.h')
-rw-r--r--src/model/mapfile.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/model/mapfile.h b/src/model/mapfile.h
index 551943e..32b2c84 100644
--- a/src/model/mapfile.h
+++ b/src/model/mapfile.h
@@ -203,9 +203,16 @@ private:
bool class_engine;
- /// list of vertices with the origin material within the current map class
+ /**
+ *@brief list of vertices with origin material
+ * */
std::vector<math::Vector3f *> class_origin_vertices;
+ /**
+ * @brief list of vertices with bounds material
+ */
+ std::vector<math::Vector3f *> map_bounds_vertices;
+
Materials map_materials;
TriangleList map_collisiontriangles;