summaryrefslogtreecommitdiffstats
path: root/src/View/TopView.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2010-01-07 07:03:58 +0100
committerMatthias Schiffer <matthias@gamezock.de>2010-01-07 07:03:58 +0100
commite0cb6bd23b21f126bde42f74f4b1a798c3e15b0f (patch)
treebc9aba37b5b4c6edeb8725720c2ebfe5e80643ab /src/View/TopView.h
parentd71148392055eec06460fa24e3747d2c55d96b38 (diff)
downloadzoomedit-e0cb6bd23b21f126bde42f74f4b1a798c3e15b0f.tar
zoomedit-e0cb6bd23b21f126bde42f74f4b1a798c3e15b0f.zip
Major cleanup
Much better now!
Diffstat (limited to 'src/View/TopView.h')
-rw-r--r--src/View/TopView.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/View/TopView.h b/src/View/TopView.h
index 17a324d..c164f31 100644
--- a/src/View/TopView.h
+++ b/src/View/TopView.h
@@ -22,12 +22,14 @@
#include "View.h"
+#include <vmmlib/vector.hpp>
+
+
namespace ZoomEdit {
namespace Data {
class Level;
class Room;
-class Vertex;
}
namespace View {
@@ -36,9 +38,9 @@ class TopView : public View {
private:
class Edge {
public:
- const Data::Vertex *v1, *v2;
+ const vmml::vec3f *v1, *v2;
- Edge(const Data::Vertex *v10, const Data::Vertex *v20)
+ Edge(const vmml::vec3f *v10, const vmml::vec3f *v20)
: v1(v10), v2(v20) {};
bool operator<(const Edge &e) const;
};