tools/MissionsEditor/main.cpp
author nemo
Sun, 28 Feb 2010 13:57:34 +0000
changeset 2880 e95c2f489345
parent 2572 af96861683f8
permissions -rw-r--r--
Palewolf adds PrincessPeach, updates other hats from set

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

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