tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 05 Jan 2019 22:05:20 +0100
changeset 14522 d0441c7e9000
parent 11015 7a905f0070ce
permissions -rw-r--r--
Lua: Add InitHealth, read-only variable containing the initial hog health setting

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

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

    return a.exec();
}