tools/MissionsEditor/main.cpp
author nemo
Sat, 27 Feb 2010 20:01:54 +0000
changeset 2878 f43465842625
parent 2572 af96861683f8
permissions -rw-r--r--
Some Mario hats from Palewolf, Link from Armagon, and a couple of Eva hats

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

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