tools/MissionsEditor/main.cpp
author unc0rr
Sun, 29 Nov 2009 16:56:04 +0000
changeset 2647 0e1208e92dfe
parent 2572 af96861683f8
permissions -rw-r--r--
Smaxx patch with tuning by me: - hogs might worry/panic if they're next to explosives (grenade, dynamite, etc.) - play sndVaporice for each fire extinguished only once (not 3 times) - allow "on attack" voices/sounds for weapons (similar to water melon bomb) - allow one voice/sound to be played during emotes - print protocol version in version info (console) - rope sounds (disabled atm) - landscape background - optimized/rewrote explosion drawing - fixed "StopSound" called with an inactive sound to stop some random sound - disabled npott
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
}