solitare/Main.qml
2024-11-30 20:56:20 +01:00

20 lines
280 B
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
ApplicationWindow {
width: 640
height: 480
visible: true
title: qsTr("Solitare")
ScoreBar {
id: scoreBar
height: 50
score: 120
time: 500
moves: 64
}
}