tools/templates/main.cpp
author smxx
Tue, 02 Mar 2010 15:04:31 +0000
changeset 2910 d5051cc8a313
parent 359 59fbfc65fbda
permissions -rw-r--r--
Engine: * Fixed DrawTextureF und DrawTextureRotatedF for NPOT textures

#include <QApplication>

#include "mainform.h"

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