From 189ecf754d0c8131464bfdff98fb56e7752556b1 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Date: Sat, 4 Feb 2017 14:49:08 +0100 Subject: Initial commit --- Source/MapEditor/main.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 Source/MapEditor/main.cpp (limited to 'Source/MapEditor/main.cpp') diff --git a/Source/MapEditor/main.cpp b/Source/MapEditor/main.cpp new file mode 100755 index 0000000..aab39bb --- /dev/null +++ b/Source/MapEditor/main.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} -- cgit v1.2.3