tools/drawMapTest/main.cpp
author unC0Rr
Fri, 02 Nov 2018 14:29:24 +0100
changeset 14099 bf40b5f938b0
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Add methods to work with Rect as box - Refactor, tests, fixes

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

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