tools/templates/main.cpp
author sheepluva
Fri, 04 Feb 2011 07:13:58 +0100
changeset 4915 922cc12d50dc
parent 359 59fbfc65fbda
permissions -rw-r--r--
fix porkey hat (image height, animation) and sheep hat (image height)

#include <QApplication>

#include "mainform.h"

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