tools/templates/main.cpp
author unc0rr
Sat, 01 Sep 2012 21:36:57 +0200
changeset 7644 ed7fecd0f5fd
parent 359 59fbfc65fbda
permissions -rw-r--r--
hide health bars of dead teams

#include <QApplication>

#include "mainform.h"

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