tools/drawMapTest/main.cpp
author Xeli
Wed, 17 Aug 2011 19:39:32 +0200
branchhedgeroid
changeset 5595 480d451152a5
parent 4425 2314bb0c433d
permissions -rw-r--r--
open ammo when clicking the current hog

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

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