tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 22 Oct 2017 00:48:38 +0200
changeset 12736 7cbb0241d31c
parent 359 59fbfc65fbda
permissions -rw-r--r--
Wrap around target coordinates when clicking on other side of wrap-around world edge This fixes girder placement failure on other side (not across).

#include <QApplication>

#include "mainform.h"

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