tools/drawMapTest/main.cpp
author Palewolf
Sat, 25 Dec 2010 20:47:29 +0100
changeset 4678 50716b795a4e
parent 4425 2314bb0c433d
permissions -rw-r--r--
Capture the flag (Blizzard) Map

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

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