tools/templates/main.cpp
author nemo
Mon, 14 Nov 2011 13:13:38 -0500
branch0.9.17
changeset 6371 c6f73d8e87e2
parent 359 59fbfc65fbda
permissions -rw-r--r--
Skip rerendering the caption if the text is unchanged. Scripts make heavy use of caption, often onGameTick

#include <QApplication>

#include "mainform.h"

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