summaryrefslogtreecommitdiff
path: root/MapTool/main.cpp
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2011-03-12 23:17:12 +0100
committerTreeki <treeki@gmail.com>2011-03-12 23:17:12 +0100
commit7d4e4c0b34a613dd3c0220475ae4e448197522c1 (patch)
tree4f5cee367de3fdef4f9a7c84af59ffe76a2bb1c3 /MapTool/main.cpp
downloadkamek-7d4e4c0b34a613dd3c0220475ae4e448197522c1.tar.gz
kamek-7d4e4c0b34a613dd3c0220475ae4e448197522c1.zip
initial commit. now I can start playing with stuff!
Diffstat (limited to '')
-rw-r--r--MapTool/main.cpp10
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();
+}