tools/templates/main.cpp
author smxx
Wed, 17 Mar 2010 22:56:23 +0000
changeset 3013 dfc1f16aeb53
parent 359 59fbfc65fbda
permissions -rw-r--r--
General: * Updated Spanish translation by Palewolf Maps: * Updated Knockball to use less strings and placeholders

#include <QApplication>

#include "mainform.h"

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