tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 24 Jul 2018 15:44:25 +0200
changeset 13544 eaa92a59ff62
parent 359 59fbfc65fbda
permissions -rw-r--r--
Update and change license information of Droplet sounds, now it's CC BY 3.0 Was previously labelled under license CC Sampling+ 1.0, which is considered non-free by FSF, OSI and DFSG.

#include <QApplication>

#include "mainform.h"

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