C
Qt Quick Ultralite loader Example
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
import QtQuick 2.15
import SettingsData
import GameState
Column {
id: root
Text {
text: "Best score: " + GameState.bestScore
font: SettingsData.smallFont
}
Text {
text: "Score: " + GameState.score
font: SettingsData.smallFont
}
}