tools/drawMapTest/main.cpp
author sheepluva
Sun, 23 Apr 2017 17:27:07 +0200
changeset 12312 83131d0e747b
parent 4425 2314bb0c433d
permissions -rw-r--r--
clean up flake falling/rising code. this should fix issue #157

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

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