tools/templates/main.cpp
author nemo
Sat, 25 Nov 2017 11:28:44 -0500
changeset 12845 b63ec501490b
parent 359 59fbfc65fbda
permissions -rw-r--r--
At the very least we should match the gameserver length which seems to be 40, not 60

#include <QApplication>

#include "mainform.h"

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