tools/drawMapTest/main.cpp
author nemo
Thu, 31 Oct 2013 21:04:39 -0400
changeset 9664 1e528c58e41d
parent 4425 2314bb0c433d
permissions -rw-r--r--
ok. this should avoid calling switch inappropriately. also, add skip to trophyrace and add the per-team achievement reporting.

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

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