tools/templates/main.cpp
author nemo
Sun, 15 Jul 2012 16:56:05 -0400
changeset 7393 3f203c62353b
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix bug in resurrector deleting graves (exists in stable too), remove some unnecessary assignments due to the fillchar 0

#include <QApplication>

#include "mainform.h"

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