tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Sun, 10 Jan 2016 00:45:13 +0300
changeset 11507 bd9a2f1b0080
parent 11015 7a905f0070ce
permissions -rw-r--r--
SDLTry doesn't halt engine no more

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

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

    return a.exec();
}