tools/MissionsEditor/main.cpp
changeset 2572 af96861683f8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/MissionsEditor/main.cpp	Wed Oct 21 16:40:55 2009 +0000
@@ -0,0 +1,10 @@
+#include <QtGui/QApplication>
+#include "editor.h"
+
+int main(int argc, char *argv[])
+{
+    QApplication a(argc, argv);
+    editor w;
+    w.show();
+    return a.exec();
+}