tools/drawMapTest/main.cpp
author nemo
Wed, 06 Mar 2013 11:13:18 -0500
changeset 8675 3fb25201d303
parent 4425 2314bb0c433d
permissions -rw-r--r--
This has bothered me for the longest time. Move texture so it doesn't overlap. I'd initially had a test for isPaused, but jumping texture bothered me.

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

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