tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 28 Oct 2018 00:47:10 +0200
changeset 14028 bbecf663d599
parent 11015 7a905f0070ce
permissions -rw-r--r--
Chance to play sndNutter if player sacrifices hog and misses

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

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

    return a.exec();
}