tools/hwmap2txt/hwmapconverter/main.cpp
author antonc27 <antonc27@mail.ru>
Wed, 21 Oct 2015 02:19:04 +0200
branchios-revival
changeset 11225 4d8ab775bad3
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Fix for 'loadNiceHogs' in GameConfig for iPad

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

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

    return a.exec();
}