tools/templates/main.cpp
author unc0rr
Thu, 20 Mar 2014 17:04:49 +0400
changeset 10208 f04fdb35fc33
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT - Fix most of templates which could produce self-intersecting polyline as a start for distortion - Fix parsing in templates editor

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}