tools/MissionsEditor/main.cpp
author sheepluva
Thu, 06 May 2010 22:02:56 +0000
changeset 3440 dee31c5149e0
parent 2572 af96861683f8
permissions -rw-r--r--
* gtHealthTag, gtSmokeTrace, gtEvilTrace, gtExplosion and gtBigExplosion are visual gears now (vgt*) * moved virtual gear steps into new file

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

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