tools/MissionsEditor/main.cpp
author nemo
Sun, 26 Sep 2010 16:28:04 -0400
changeset 3908 1429c303858d
parent 2572 af96861683f8
permissions -rw-r--r--
Can't use cHealthDecrease here for these two 'cause it isn't a generic "do some damage to hog" flag, but is rather set when SD starts

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

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