tools/drawMapTest/main.cpp
author sheepluva
Thu, 16 Jan 2014 12:28:41 +0100
changeset 9992 1773ef634b78
parent 4425 2314bb0c433d
permissions -rw-r--r--
PhysicsFS 2.0.0 seems to be sufficient; also fix a typo

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

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