tools/MissionsEditor/main.cpp
author nemo
Sat, 30 Oct 2010 21:06:55 -0400
changeset 4035 3ed9573bcf5e
parent 2572 af96861683f8
permissions -rw-r--r--
Only set zombie hat if the hog didn't have a hat. I'm keeping my dinos dammit!

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

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