tools/drawMapTest/main.cpp
author nemo
Sun, 14 Aug 2011 17:49:12 -0400
changeset 5564 4f42009237df
parent 4425 2314bb0c433d
permissions -rw-r--r--
For mikade's sake, use old dx/dy/frametick as default, so health crosses move the same

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

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