tools/drawMapTest/main.cpp
author nemo
Wed, 30 Oct 2013 15:13:17 -0400
changeset 9657 2d8cae3c0855
parent 4425 2314bb0c433d
permissions -rw-r--r--
use gameticks instead of turn timer. untested. also replaced tabs with spaces

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

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