tools/hwmap2txt/hwmapconverter/main.cpp
author antonc27 <antonc27@mail.ru>
Mon, 10 Aug 2015 22:44:51 +0200
branchios-revival
changeset 11102 87ca80dbb141
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Restore game functionality disabled, because it blocks main screen Note: Uncomment this after

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

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

    return a.exec();
}