tools/templates/main.cpp
author unc0rr
Sat, 09 Jun 2012 17:05:16 +0400
changeset 7204 522f165cd2e7
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots. - Temporarily make AI tell its expectations in chat

#include <QApplication>

#include "mainform.h"

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