diff -r 349b4c586ef5 -r af96861683f8 tools/MissionsEditor/main.cpp --- /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 +#include "editor.h" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + editor w; + w.show(); + return a.exec(); +}