tools/drawMapTest/main.cpp
author sheepluva
Tue, 21 Jan 2014 21:16:52 +0100
changeset 10038 0a5e651d494c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix uGearsHandlersMess.pas changes lost in merge r1c02143bfe9c. This seems to only include the drill rocket fixes ( re0dd66b2e73b and r8db0c56f7e2f ) as well as the initial cake push ( r8786d4ac9e0b )

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

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