aboutsummaryrefslogtreecommitdiffstats
path: root/editor/editorwindow.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-10 13:00:35 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-10 13:00:35 +0100
commit3397dd57a30f7868c887b01c47a56bb6fa651eb6 (patch)
tree33907ff9faad3e2a1374da155cfec2cd208ec27b /editor/editorwindow.cpp
parentd172a742008abb4c573353ca43b9b247110590c4 (diff)
downloadYAGE-3397dd57a30f7868c887b01c47a56bb6fa651eb6.tar.gz
YAGE-3397dd57a30f7868c887b01c47a56bb6fa651eb6.zip
Adding qt editor
Diffstat (limited to 'editor/editorwindow.cpp')
-rw-r--r--editor/editorwindow.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/editor/editorwindow.cpp b/editor/editorwindow.cpp
new file mode 100644
index 00000000..35eeeb31
--- /dev/null
+++ b/editor/editorwindow.cpp
@@ -0,0 +1,18 @@
+#include "editorwindow.h"
+#include "ui_editorwindow.h"
+
+EditorWindow::EditorWindow(QWidget *parent) :
+ QMainWindow(parent),
+ ui(new Ui::EditorWindow)
+{
+ ui->setupUi(this);
+}
+
+EditorWindow::~EditorWindow()
+{
+ delete ui;
+}
+
+void EditorWindow::on_openGLWidget_destroyed()
+{
+}