tools/drawMapTest/main.cpp
author nemo
Wed, 24 Dec 2014 11:41:53 -0500
changeset 10712 89eaf51d0e9a
parent 4425 2314bb0c433d
permissions -rw-r--r--
Probably fixes issue #891 although the overall playability of the campaign, who knows, since invalid name was used in the add too

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}