tools/drawMapTest/main.cpp
author nemo
Wed, 22 Aug 2012 22:10:47 -0400
changeset 7581 ea509b70e03d
parent 4425 2314bb0c433d
permissions -rw-r--r--
move this section back to the connection code, and add an exclusion for air attack. probably should play a few portal games just in case

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

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