tools/MissionsEditor/main.cpp
author nemo
Wed, 22 Sep 2010 01:09:40 -0400
changeset 3890 e4b7b30232fd
parent 2572 af96861683f8
permissions -rw-r--r--
Extend time limit to 9999, remove ready timer if time is over 999 and stop drawing time if it is over 999 (draws wrong over 999 anyway) - this has the effect of allowing an "unlimited" time appearance if turns are over a quarter hour or so. This can be used to add an unlimited time scheme or button to ipad
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
}