tools/MissionsEditor/main.cpp
author nemo
Sun, 07 Nov 2010 16:51:16 -0500
changeset 4205 ec61cdbde0f2
parent 2572 af96861683f8
permissions -rw-r--r--
keep Clean Slate mode closer to default. the increased health in crates and the increased damage isn't really needed.

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

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