tools/MissionsEditor/main.cpp
author nemo
Thu, 30 Sep 2010 11:50:32 -0400
changeset 3918 916ed485daed
parent 2572 af96861683f8
permissions -rw-r--r--
Update translations, add a hungarian stub for edge_hog who is volunteering

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

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