tools/hwmap2txt/hwmapconverter/main.cpp
author antonc27 <antonc27@mail.ru>
Thu, 22 Oct 2015 22:21:35 +0200
branchios-revival
changeset 11233 b49dfdf628f6
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Some strings localizations for Settings

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

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

    return a.exec();
}