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

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}