roulette-payout/RedBlack.qml

34 lines
506 B
QML

import QtQuick
import roulette
Item {
/* RED */
Item {
x: 236
y: 231
BetButton {
index_: 37
betType: 1
height: 26
width: 73
offsetX: 50
offsetY: 23
}
}
/* BLACK */
Item {
x: 310
y: 231
BetButton {
index_: 38
betType: 2
height: 26
width: 73
offsetX: 50
offsetY: 23
}
}
}