tools/MissionsEditor/main.cpp
author nemo
Sat, 06 Mar 2010 21:32:04 +0000
changeset 2963 0f0789204802
parent 2572 af96861683f8
permissions -rw-r--r--
This might be all it takes to prevent the desync. needs local/remote testing. Also toggle 2nd barrel state on 0 movement

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

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