tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 11 Feb 2018 04:00:10 +0100
changeset 12972 d82e4e583805
parent 11015 7a905f0070ce
permissions -rw-r--r--
Construction Mode: Fix annoying extra messages when using object placer This is done by moving object placer away from the drill strike, which permits timer keys.

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

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

    return a.exec();
}