tools/drawMapTest/main.cpp
author sheepluva
Thu, 17 Sep 2015 09:59:58 +0200
changeset 11180 1750a1ce7131
parent 4425 2314bb0c433d
permissions -rw-r--r--
speed up TrophyRace deaths

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

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