tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Oct 2017 20:39:28 +0200
changeset 12781 7260e9b37b62
parent 359 59fbfc65fbda
permissions -rw-r--r--
ACF7: Set correct hog position after skipping start anim

#include <QApplication>

#include "mainform.h"

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