tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 27 Oct 2018 18:26:44 +0200
changeset 14016 09e2e52aa025
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add 2 taunts: Fire, WatchThis (attack voice for some weapons)

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

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