tools/templates/main.cpp
author smxx
Mon, 01 Mar 2010 12:20:38 +0000
changeset 2897 5eda7b3cc24f
parent 359 59fbfc65fbda
permissions -rw-r--r--
Frontend: * Added labels and moved the fort selection on the edit team page * Realigned most items on the settings page

#include <QApplication>

#include "mainform.h"

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