tools/templates/main.cpp
author nemo
Sun, 07 Nov 2010 16:51:16 -0500
changeset 4205 ec61cdbde0f2
parent 359 59fbfc65fbda
permissions -rw-r--r--
keep Clean Slate mode closer to default. the increased health in crates and the increased damage isn't really needed.

#include <QApplication>

#include "mainform.h"

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