tools/drawMapTest/main.cpp
author koda
Thu, 03 May 2012 16:04:38 +0100
changeset 7016 8b34f46e10c1
parent 4425 2314bb0c433d
permissions -rw-r--r--
HAPPY 7000th COMMIT HEDGEWARS - enforce strong typechecking for strings - disable embedded fpc exceptions (binary size savings of ~5k) - add stack check in debug mode

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

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