tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 31 Oct 2017 18:30:53 +0100
changeset 12811 de3cbbb09915
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix host not re-sending ammo scheme after editing an existing ammo scheme This caused clients to start with an incompatible ammo loadout.

#include <QApplication>

#include "mainform.h"

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