tools/drawMapTest/main.cpp
author nemo
Tue, 26 Jun 2012 10:14:40 -0400
changeset 7293 468cf6d561e5
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add green mask for anti-portal areas on custom maps. Flagged as Bouncy since it is intended for that general use. Needs testing.

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

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