tools/drawMapTest/main.cpp
author Henek
Mon, 11 Apr 2011 00:35:53 +0200 (2011-04-10)
changeset 5138 f991f87969ff
parent 4425 2314bb0c433d
permissions -rw-r--r--
now Random Weapons will show the weapon you will get during the other players turns not tested online yet, would be happy if someone could and report to me results
#include <QtGui/QApplication>
#include "mainwindow.h"

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