tools/templates/main.cpp
author nemo
Tue, 20 Oct 2009 21:20:47 +0000
changeset 2568 e654cbfb23ba
parent 359 59fbfc65fbda
permissions -rw-r--r--
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.

#include <QApplication>

#include "mainform.h"

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