summaryrefslogtreecommitdiffstats
path: root/examples/demos/hangman/main.cpp
blob: 1f0c9ace653ba2aa86a3f3673eccaec4478ae4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QtQuick>
#include <QtGui/QGuiApplication>
#include <QtQml/QQmlApplicationEngine>

#include "hangmangame.h"
#include "purchasing/qmltypes/inappstoreqmltype.h"
#include "purchasing/inapp/inappproduct.h"
#include "purchasing/inapp/inapptransaction.h"

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);

    QQmlApplicationEngine engine(QUrl("qrc:/main.qml"));

    return app.exec();
}