tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 28 Oct 2018 00:47:10 +0200
changeset 14023 bbecf663d599
parent 4425 2314bb0c433d
permissions -rw-r--r--
Chance to play sndNutter if player sacrifices hog and misses

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

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