tools/drawMapTest/main.cpp
author Xeli
Thu, 04 Aug 2011 17:17:21 +0200
branchhedgeroid
changeset 5452 3edc3e3b8cdc
parent 4425 2314bb0c433d
permissions -rw-r--r--
Created callbacks to give the frontend information of maxteams/hogs

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

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