Added Low/High bets.

This commit is contained in:
greek 2024-06-06 08:17:49 +01:00
parent a0d35d73ae
commit d56584ce26
3 changed files with 38 additions and 0 deletions

View file

@ -44,6 +44,7 @@ qt_add_qml_module(roulette-payout
Singles.qml
RedBlack.qml
EvenOdd.qml
LowHigh.qml
)

34
LowHigh.qml Normal file
View file

@ -0,0 +1,34 @@
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
}
}
}

View file

@ -36,6 +36,9 @@ Item {
EvenOdd {
}
LowHigh {
}
}
function destroyOnClose(obj) {