From 893176a0b18a2281abe09def716ccc3db5583c3f Mon Sep 17 00:00:00 2001 From: Julian T Date: Sun, 26 Jul 2020 12:56:27 +0200 Subject: Implemented object intersection and startet work on render gui --- app/mainwindow.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/mainwindow.hpp (limited to 'app/mainwindow.hpp') diff --git a/app/mainwindow.hpp b/app/mainwindow.hpp new file mode 100644 index 0000000..a6c1be3 --- /dev/null +++ b/app/mainwindow.hpp @@ -0,0 +1,19 @@ +#ifndef MAIN_H +#define MAIN_H + +#include + +#include "draw.hpp" + +class MainWindow : public QMainWindow { + Q_OBJECT + + public: + MainWindow(); + + private: + DrawWidget drawer; + +}; + +#endif -- cgit v1.2.3