roulette-payout/Root.qml

31 lines
498 B
QML
Raw Normal View History

import QtQuick
import QtQuick.Controls
import roulette
Window {
height: 500
width: 1000
title: "Roulette Payout"
visible: true
Pane {
anchors.fill: parent
2024-06-01 01:14:46 +01:00
PlayerAreaView {
id: playerAreaView
}
2024-06-01 01:14:46 +01:00
Roulette {
id: roulette
height: parent.height / 1.7
width: parent.width / 1.7
anchors{
top: parent.top
right: parent.right
}
}
}
}