tools/drawMapTest/main.cpp
author Palewolf
Sat, 01 Jan 2011 19:41:58 +0100
changeset 4805 01332828b568
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fancier detection of hogs/objects. Hogs wont get buried even by the worst of storms.

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

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