tools/templates/main.cpp
author nemo
Thu, 30 Jul 2015 16:28:35 -0400
changeset 11030 2ef7700c25e9
parent 359 59fbfc65fbda
permissions -rw-r--r--
darken and blur the cupcake a bit so that people stop trying to teleport on it

#include <QApplication>

#include "mainform.h"

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