tools/MissionsEditor/main.cpp
author nemo
Tue, 29 Jun 2010 10:18:51 -0400
changeset 3586 64ab042084a2
parent 2572 af96861683f8
permissions -rw-r--r--
Default ammo set was horribly unbalanced - you want to test portal, play "crazy" :)

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

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