roulette-payout/Roulette.qml

26 lines
419 B
QML
Raw Normal View History

2024-06-01 01:14:46 +01:00
import QtQuick
import Qt5Compat.GraphicalEffects
import roulette
Item {
Image {
source: "qrc:/roulette.png"
signal streetBet(n: int)
//fillMode: Image.PreserveAspectFit
height: parent.height
width: parent.width
anchors {
top: parent.top
right: parent.right
}
StreetBetsView {
id: streetBets
}
}
}