tools/MissionsEditor/main.cpp
author sheepluva
Mon, 28 Jun 2010 09:33:10 +0200
changeset 3580 85bd667955f2
parent 2572 af96861683f8
permissions -rw-r--r--
engine: apply weapon offset to charge animation

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

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