tools/drawMapTest/main.cpp
author koda
Mon, 12 Sep 2011 15:58:59 +0200
changeset 5877 514b639c40da
parent 4425 2314bb0c433d
permissions -rw-r--r--
remove the forced fullscreen resolution since everyone is hating it; kept it around only for stereo rendering (where it's mandatory)

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

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