roulette-payout/Root.qml

30 lines
577 B
QML

import QtQuick
import QtQuick.Controls
import roulette /* this is importing the target "roulette-payout" defined in CMakeLists.txt */
Window {
height: 500
width: 1000
title: "Roulette Payout"
visible: true
Pane {
anchors.fill: parent
PlayerAreaView {
id: playerAreaView
}
Roulette {
id: roulette
height: parent.height / 1.7
width: parent.width / 1.7
anchors{
top: parent.top
right: parent.right
}
}
}
}