aboutsummaryrefslogtreecommitdiffstats
path: root/editor/main.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/main.cpp
parentd172a742008abb4c573353ca43b9b247110590c4 (diff)
downloadYAGE-3397dd57a30f7868c887b01c47a56bb6fa651eb6.tar.gz
YAGE-3397dd57a30f7868c887b01c47a56bb6fa651eb6.zip
Adding qt editor
Diffstat (limited to 'editor/main.cpp')
-rw-r--r--editor/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/editor/main.cpp b/editor/main.cpp
new file mode 100644
index 00000000..a3aa7cbc
--- /dev/null
+++ b/editor/main.cpp
@@ -0,0 +1,11 @@
+#include "editorwindow.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ EditorWindow w;
+ w.show();
+
+ return a.exec();
+}