tools/MissionsEditor/main.cpp
author unc0rr
Sat, 06 Mar 2010 18:23:25 +0000
changeset 2961 3e057dfa601f
parent 2572 af96861683f8
permissions -rw-r--r--
Fix "FOLLOW" command handler and place it into proper file

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

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