tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Mon, 30 Nov 2015 23:25:18 +0300
branchqmlfrontend
changeset 11434 23912c93935a
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Implement engine runs queue - Many small improvements

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

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

    return a.exec();
}