tools/drawMapTest/main.cpp
author sheepluva
Sun, 06 Feb 2011 10:28:59 +0100
changeset 4926 f9a13dd16f01
parent 4425 2314bb0c433d
permissions -rw-r--r--
update lib wrapper.c so that it actually supplies all arguments required by current Game(), instead of causing a segfault ;D

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

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