aboutsummaryrefslogtreecommitdiff
path: root/app/mainwindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'app/mainwindow.hpp')
-rw-r--r--app/mainwindow.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/mainwindow.hpp b/app/mainwindow.hpp
index a6c1be3..7e356a0 100644
--- a/app/mainwindow.hpp
+++ b/app/mainwindow.hpp
@@ -4,16 +4,18 @@
#include <QMainWindow>
#include "draw.hpp"
+#include "rendercoord.hpp"
+#include <render.hpp>
class MainWindow : public QMainWindow {
Q_OBJECT
public:
- MainWindow();
+ MainWindow(Renderer r);
private:
- DrawWidget drawer;
-
+ DrawWidget m_drawer;
+ RenderCoordinator m_render;
};
#endif