tools/templates/main.cpp
author unc0rr
Wed, 05 Mar 2008 19:34:52 +0000
changeset 797 e7fa1a1b9791
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix bug with handling explosions (wrong parameters passed to glTexSubImage2D) spotted by Tiyuri

#include <QApplication>

#include "mainform.h"

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