tools/drawMapTest/main.cpp
author nemo
Tue, 13 Sep 2011 00:51:02 -0400
changeset 5887 7d69b76ce923
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't set lfDamaged for small tunnels

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

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