tools/templates/main.cpp
author nemo
Sun, 12 Dec 2010 23:52:53 -0500
changeset 4516 ecf012a762d8
parent 359 59fbfc65fbda
permissions -rw-r--r--
add PlaySound(soundType, hogGearUID) -- this roundabout way to reference a team seems to be how things are done in lua right now. might need changing in future

#include <QApplication>

#include "mainform.h"

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