tools/templates/main.cpp
author nemo
Thu, 28 Feb 2013 22:10:49 -0500
changeset 8616 c4536e98c712
parent 359 59fbfc65fbda
permissions -rw-r--r--
Safety check. The main place this can be a problem is on a mild bowl w/ multiple hogs. Could possibly add a hog collision check in here.

#include <QApplication>

#include "mainform.h"

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