From 1a8ec165031af3b860028ef1b360acc8e7baf9e6 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Thu, 21 Sep 2017 23:32:46 +0000 Subject: Rebuilding documentation --- editor/main.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 editor/main.cpp (limited to 'editor/main.cpp') 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 + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + EditorWindow w; + w.show(); + + return a.exec(); +} -- cgit