tools/drawMapTest/main.cpp
author unc0rr
Mon, 03 Feb 2014 13:52:47 +0400
changeset 10098 f00dee04b5d7
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Cut actions array instead of performing full copy, when it is possible - Fix use of uninitialized attack parameters struct (existed for years, and could maybe explain some weird ai behavior)

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}