tools/templates/main.cpp
author nemo
Fri, 20 Jul 2012 17:43:35 -0400
changeset 7408 38d369c59d51
parent 359 59fbfc65fbda
permissions -rw-r--r--
don't need the camera following invisible stuff (maybe this should be in the general camera routine?)

#include <QApplication>

#include "mainform.h"

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