tools/MissionsEditor/main.cpp
author smxx
Sat, 27 Mar 2010 17:22:33 +0000
changeset 3115 831bd0f7050d
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Updated Birdy's eggs and added egg shell fragments (missing sound)

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

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