tools/drawMapTest/main.cpp
author alfadur
Thu, 12 Apr 2018 01:51:38 +0200
changeset 13318 9071600f7b22
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix minigun bullets hitting shooter when it hits hog on other side of world wrap

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

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