tools/drawMapTest/main.cpp
author koda
Fri, 17 Jan 2014 16:50:01 +0100
changeset 10006 921e7b71330f
parent 4425 2314bb0c433d
permissions -rw-r--r--
happy 10000th commit also fix the travis build by adding a system physfs library

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

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