tools/templates/main.cpp
author unc0rr
Sun, 08 Jul 2007 17:16:46 +0000
changeset 553 5478386d935f
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots) - Decrease frequency of case spawning - Small fixes

#include <QApplication>

#include "mainform.h"

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