tools/drawMapTest/main.cpp
author sheepluva
Sat, 10 Sep 2011 16:21:38 +0200
changeset 5839 7ea0745912f7
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix: let's use less random code for drawing the bullet trajectory

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

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