tools/MissionsEditor/main.cpp
author nemo
Sat, 30 Oct 2010 23:50:49 -0400
changeset 4044 de7170e51cc6
parent 2572 af96861683f8
permissions -rw-r--r--
Check for collision with surfaces above when levitating hog, use more typical drawing syntax for the resurrector wep, restore typical indentation

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

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