From 3397dd57a30f7868c887b01c47a56bb6fa651eb6 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 10 Sep 2017 13:00:35 +0100 Subject: Adding qt editor --- 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