tools/MissionsEditor/main.cpp
author koda
Wed, 27 Oct 2010 14:23:47 +0200
branchexperimental3D
changeset 4006 45b63c2a694f
parent 2572 af96861683f8
permissions -rw-r--r--
one more interface trick, force max resolution possible when in fullscreen

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

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