tools/MissionsEditor/main.cpp
author smxx
Sat, 01 May 2010 20:02:20 +0000
changeset 3390 1d4926d10a9e
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Changed Tint() to use the 4 byte version all the time instead of the longword pointer due to pixel format issues * Added a "laser dot" to laser sight

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

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