tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 20 Sep 2018 13:07:21 +0200
changeset 13799 ced1e6ecaaad
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix maps variable in OfficialChallengeHashes not being global (caused error in normal Racer)

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

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