tools/drawMapTest/main.cpp
author sheepluva
Thu, 26 Apr 2012 16:15:37 +0200
changeset 6937 7f77fa908a4e
parent 4425 2314bb0c433d
permissions -rw-r--r--
messing with the theme model a bit (gets now auto-updated after DLC download too)

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

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