aboutsummaryrefslogtreecommitdiffstats
path: root/editor/main.cpp
diff options
context:
space:
mode:
authorTravisBot <>2017-09-21 23:32:46 +0000
committerTravisBot <>2017-09-21 23:32:46 +0000
commit1a8ec165031af3b860028ef1b360acc8e7baf9e6 (patch)
treeb9d2e956005b4de847417baf4a66ab3f028f1bc1 /editor/main.cpp
parentf5ecbc445977654e84120b3b02a9fe5d86dae5c8 (diff)
downloadYAGE-1a8ec165031af3b860028ef1b360acc8e7baf9e6.tar.gz
YAGE-1a8ec165031af3b860028ef1b360acc8e7baf9e6.zip
Rebuilding documentation
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();
+}