2022-06-03 11:26:02 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2021-07-26 10:42:14 +00:00
|
|
|
|
|
|
|
#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();
|
|
|
|
}
|