tools/MissionsEditor/main.cpp
author nemo
Tue, 09 Nov 2010 22:44:12 -0500
changeset 4234 60920aeb1606
parent 2572 af96861683f8
permissions -rw-r--r--
hide crosshair when switching to no weapon

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

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