roulette-payout/EvenOdd.qml

35 lines
505 B
QML
Raw Normal View History

2024-06-06 08:11:37 +01:00
import QtQuick
import roulette
Item {
/* EVEN */
Item {
x: 162
y: 231
BetButton {
index_: 37
betType: 4
height: 26
width: 73
offsetX: 50
offsetY: 23
}
}
/* ODD */
Item {
x: 384
y: 231
BetButton {
index_: 38
betType: 3
height: 26
width: 73
offsetX: 50
offsetY: 23
}
}
}