tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 13 Apr 2016 01:53:25 +0200
changeset 11723 456f4e9f9dce
parent 4425 2314bb0c433d
permissions -rw-r--r--
Construction Mode: Update structure overlay each tick, thus falling smoothly

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

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