tools/MissionsEditor/main.cpp
author nemo
Sun, 21 Feb 2010 19:03:04 +0000
changeset 2835 2a453af0ade2
parent 2572 af96861683f8
permissions -rw-r--r--
inu's updated portugese (marco_silva and inu are fighting over name of deagle :) )

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

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