tools/MissionsEditor/main.cpp
author sheepluva
Wed, 16 Jun 2010 21:14:23 +0200
changeset 3508 a7ca07614a2d
parent 2572 af96861683f8
permissions -rw-r--r--
correct cake sit-down animation so that it doesn't sit down in mid-air anymore

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

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