tools/templates/main.cpp
author Stepan777 <stepik-777@mail.ru>
Tue, 26 Jun 2012 23:29:41 +0400
changeset 7306 3cff5c769509
parent 359 59fbfc65fbda
permissions -rw-r--r--
Here they come - thumbnails. Also fixing some resizing issues in pagevideos - now it resizes nicer. Wait for a announcement on hedgewars.org, I hope to make it soon.

#include <QApplication>

#include "mainform.h"

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