tools/drawMapTest/main.cpp
author unC0Rr
Fri, 12 Feb 2016 17:03:42 +0300
changeset 11547 64a5ab2c4f00
parent 4425 2314bb0c433d
permissions -rw-r--r--
Attempt to implement hash for special points to detect tech racer maps

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

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