tools/templates/main.cpp
author sheepluva
Fri, 17 Jan 2014 15:32:50 +0100
changeset 10001 ec523563826e
parent 359 59fbfc65fbda
permissions -rw-r--r--
disallow currenthh arrow to go offscreen, always point in direction of the hog - this should make the life of new players easier

#include <QApplication>

#include "mainform.h"

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