tools/drawMapTest/main.cpp
author sheepluva
Sun, 24 Apr 2016 16:12:19 +0200
changeset 11688 79bf4d02626c
parent 4425 2314bb0c433d
permissions -rw-r--r--
merge Wuzzy's ropeknockchallenge updates

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

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