tools/drawMapTest/main.cpp
author nemo
Tue, 21 May 2013 22:56:31 -0400
changeset 9041 aefe46d64dd9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives

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

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