diff options
Diffstat (limited to '')
-rw-r--r-- | MapTool/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MapTool/main.cpp b/MapTool/main.cpp new file mode 100644 index 0000000..2241edd --- /dev/null +++ b/MapTool/main.cpp @@ -0,0 +1,10 @@ +#include <QtGui/QApplication> +#include "mtmainwindow.h" + +int main(int argc, char *argv[]) { + QApplication a(argc, argv); + MTMainWindow w; + w.show(); + + return a.exec(); +} |