From e0cb6bd23b21f126bde42f74f4b1a798c3e15b0f Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 7 Jan 2010 07:03:58 +0100 Subject: Major cleanup Much better now! --- src/View/TopView.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/View/TopView.h') 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 + + 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; }; -- cgit v1.2.3