tools/drawMapTest/main.cpp
author nemo
Sat, 23 Jan 2016 16:07:14 -0500
changeset 11527 44e646598e6a
parent 4425 2314bb0c433d
permissions -rw-r--r--
sparkles for dynamite at sheepy's request. he can tweak values if he wishes

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

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