tools/MissionsEditor/main.cpp
author nemo
Fri, 05 Nov 2010 18:56:12 -0400
changeset 4140 1563b216f243
parent 2572 af96861683f8
permissions -rw-r--r--
revert attempts to block switching weapon while targetting in infinite attack mode. just getting too messy. probably best to allow any weapon to be targetted, and store the target in the gear and draw it there instead of uworld, but I'm leaving this alone
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2572
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     1
#include <QtGui/QApplication>
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     2
#include "editor.h"
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     3
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     4
int main(int argc, char *argv[])
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     5
{
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     6
    QApplication a(argc, argv);
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     7
    editor w;
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     8
    w.show();
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
     9
    return a.exec();
af96861683f8 Start work on missions/trainings editor
unc0rr
parents:
diff changeset
    10
}