tools/drawMapTest/main.cpp
author nemo
Tue, 18 Sep 2018 19:21:36 -0400
changeset 13788 381e37c6d5d9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Separate synced pixels from land digests - this is mostly to allow the official racer digests to remain unchanged.

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

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