tools/templates/main.cpp
author henek
Wed, 03 Nov 2010 18:18:16 -0400
changeset 4107 81a205f9d0ff
parent 359 59fbfc65fbda
permissions -rw-r--r--
adjust the range for mines to allow disabling with 0 now that the toggle button is gone.

#include <QApplication>

#include "mainform.h"

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