tools/drawMapTest/main.cpp
author nemo
Sun, 12 Dec 2010 23:52:53 -0500
changeset 4516 ecf012a762d8
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}