tools/templates/main.cpp
author smxx
Wed, 03 Mar 2010 15:04:39 +0000
changeset 2924 908851e59958
parent 359 59fbfc65fbda
permissions -rw-r--r--
Engine: * Renamed proto.inc to config.inc to receive other config values from cmake as well * Moved Lua library lookup back to CMake - hope this finally fixes all issues * Fixed training once again

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}