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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/View/TopView.h b/src/View/TopView.h
index 5141e51..844faa5 100644
--- a/src/View/TopView.h
+++ b/src/View/TopView.h
@@ -35,6 +35,8 @@ class TopView : public View {
private:
Data::Level *level;
+ void drawGrid(Gui::RenderArea *renderArea);
+
void renderRoom(Data::Room *room);
public:
@@ -43,7 +45,7 @@ class TopView : public View {
Data::Level* getLevel() {return level;}
void setLevel(Data::Level *level0) {level = level0;}
- virtual void render();
+ virtual void render(Gui::RenderArea *renderArea);
};
}