tools/templates/main.cpp
author unc0rr
Mon, 28 Jan 2008 17:11:19 +0000
changeset 771 86fbe8753a7c
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Enable back console (doesn't render yet) - Make texture size be of power of 2

#include <QApplication>

#include "mainform.h"

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