tools/hwmap2txt/hwmapconverter/main.cpp
author antonc27 <antonc27@mail.ru>
Fri, 30 Oct 2015 23:06:25 +0100
branchios-revival
changeset 11265 ce5f1b547a67
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Return of stereo sound for mobile! - 'Justyouwait' voice sound not skipped anymore

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

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

    return a.exec();
}