tools/drawMapTest/main.cpp
author sheepluva
Thu, 30 Dec 2010 22:20:17 +0100
changeset 4790 4cb3f7890fbd
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix portal gun wrong color issue

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

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