aboutsummaryrefslogtreecommitdiff
path: root/ViewController.h
diff options
context:
space:
mode:
Diffstat (limited to 'ViewController.h')
-rw-r--r--ViewController.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ViewController.h b/ViewController.h
index bccacd0..fb15fde 100644
--- a/ViewController.h
+++ b/ViewController.h
@@ -8,6 +8,7 @@
class View;
class Museum;
+class QuadTree;
class ViewController {
public:
@@ -30,6 +31,7 @@ private:
void update_artists();
void update_pathfinding();
void update_quadtree();
+ void update_quadtree_recursive(QuadTree * tree);
private:
Museum & museum;
@@ -38,7 +40,7 @@ private:
bool draw_artists = true;
bool draw_pathfinding = false;
- bool draw_quadtree = false;
+ bool draw_quadtree = true;
private:
unsigned int scale = 16;