roulette-payout/LowHigh.qml
2024-06-06 08:17:49 +01:00

34 lines
504 B
QML

import QtQuick
import roulette
Item {
/* LOW */
Item {
x: 89
y: 231
BetButton {
index_: 37
betType: 5
height: 26
width: 72
offsetX: 50
offsetY: 23
}
}
/* HIGH */
Item {
x: 457
y: 231
BetButton {
index_: 38
betType: 6
height: 26
width: 73
offsetX: 50
offsetY: 23
}
}
}