tools/templates/main.cpp
author unc0rr
Sun, 27 Jan 2008 15:07:31 +0000
changeset 763 6286afff6b87
parent 359 59fbfc65fbda
permissions -rw-r--r--
Add alpha-channel to horizont sprites

#include <QApplication>

#include "mainform.h"

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