tools/drawMapTest/main.cpp
author nemo
Sun, 03 Nov 2013 14:45:07 -0500
changeset 9672 8663d299ba62
parent 4425 2314bb0c433d
permissions -rw-r--r--
this should prevent sliding when game clock isn't running. sorry unc0rr, not going to bother encapsulating. maybe later. short on time right now/lazy

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

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