tools/templates/main.cpp
author nemo
Sun, 04 Sep 2011 10:47:44 -0400
changeset 5760 8e9bd318171a
parent 359 59fbfc65fbda
permissions -rw-r--r--
Add a bunch of new hats from the hats thread. There are still 20 or so that need pixel fixes that are not in this list.

#include <QApplication>

#include "mainform.h"

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