tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 11 Feb 2018 20:39:39 +0100
changeset 12975 6d328f116044
parent 11015 7a905f0070ce
permissions -rw-r--r--
Construction Mode: Fix cursor icon being displayed on teleport

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

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

    return a.exec();
}