tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 04 May 2017 16:49:34 +0200
changeset 12407 8cc070640fd1
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix skipping in Racer causing the next team to be skipped, too

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

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