aboutsummaryrefslogtreecommitdiffstats
path: root/editor/main.cpp
diff options
context:
space:
mode:
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();
+}