tools/drawMapTest/main.cpp
author Henek
Sat, 29 Jan 2011 21:16:09 +0100
changeset 4883 7cddc9201a1d
parent 4425 2314bb0c433d
permissions -rw-r--r--
added dummy for tardis and ugly icons for tardis and structure also added ability to add goals for lua, but forgot it so might not work

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

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