tools/drawMapTest/main.cpp
author Xeli
Thu, 01 Sep 2011 17:03:19 +0200
branchhedgeroid
changeset 5725 e27100a0e2d0
parent 4425 2314bb0c433d
permissions -rw-r--r--
merge + changed the tardis image to egg.png because the data folder isn't up to date

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

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