tools/drawMapTest/main.cpp
author sheepluva
Mon, 31 Oct 2011 16:44:25 +0100
changeset 6251 5cd33711afb9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Bee: + don't explode on time expiration but fall instead (still explodes on impact) * avoid side-effects by removing flag sharing between different bees.

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

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