tools/drawMapTest/main.cpp
author nemo
Sat, 17 Mar 2012 16:14:08 -0400
changeset 6791 6907194f2c57
parent 4425 2314bb0c433d
permissions -rw-r--r--
I imagine this should use the game window width, but I'll let someone else figure it out. I'm just sick of frames being half-visible in navigation.

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

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