tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Tue, 03 May 2016 19:17:30 +0300
changeset 11798 984f9c76146d
parent 11015 7a905f0070ce
permissions -rw-r--r--
I heard we switched to physfs

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

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

    return a.exec();
}