tools/drawMapTest/main.cpp
author nemo
Sun, 26 Feb 2012 12:32:48 -0500
changeset 6742 0acfa8202a29
parent 4425 2314bb0c433d
permissions -rw-r--r--
pass indexes for the clan/team/hedgehog

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

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