tools/templates/main.cpp
author sheepluva
Sun, 30 Oct 2011 17:31:53 +0100
changeset 6242 27297c421bbc
parent 359 59fbfc65fbda
permissions -rw-r--r--
frontend flakes: don't spawn flakes at locations that will cause them to never be within the visible frame

#include <QApplication>

#include "mainform.h"

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