summaryrefslogtreecommitdiffstats
path: root/src/View/TopView.h
diff options
context:
space:
mode:
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;
};