tools/drawMapTest/main.cpp
author nemo
Wed, 11 Oct 2017 17:05:35 -0400
changeset 12698 2592c6ea6008
parent 4425 2314bb0c433d
permissions -rw-r--r--
wind blowing around mines off-turn was too annoying.

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

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