From 595ac4744b75688f7ca61993c42ea9eedab3a6b7 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Sun, 8 May 2011 15:52:41 +0200 Subject: Merged Quadtree and friends into Terrain. --- tool.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tool.h') diff --git a/tool.h b/tool.h index 13a833a..5ccda41 100644 --- a/tool.h +++ b/tool.h @@ -1,7 +1,7 @@ #ifndef TOOL_H #define TOOL_H -#include "quadtree.h" +#include "terrain.h" #include "vector.h" #include "gui.h" @@ -9,11 +9,11 @@ class Tool { protected: - Quadtree *tree; + Terrain *terrain; GUI *gui; public: - Tool(Quadtree *tree); + Tool(Terrain *terrain); virtual ~Tool() {}; virtual bool handle_event(SDL_Event& event, Vector3& selected) = 0; @@ -26,7 +26,7 @@ class RaiseTool : public Tool { static std::string name; public: - RaiseTool(Quadtree *tree); + RaiseTool(Terrain *terrain); virtual ~RaiseTool(); virtual bool handle_event(SDL_Event& event, Vector3& selected); -- cgit v1.2.3