tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Tue, 21 Jul 2015 08:28:48 -0400
changeset 11024 b02e38762bbb
parent 11015 7a905f0070ce
permissions -rw-r--r--
disable land dump when using blurry land setting.

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

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

    return a.exec();
}