Added Low/High bets.
This commit is contained in:
parent
a0d35d73ae
commit
d56584ce26
3 changed files with 38 additions and 0 deletions
|
@ -44,6 +44,7 @@ qt_add_qml_module(roulette-payout
|
||||||
Singles.qml
|
Singles.qml
|
||||||
RedBlack.qml
|
RedBlack.qml
|
||||||
EvenOdd.qml
|
EvenOdd.qml
|
||||||
|
LowHigh.qml
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
34
LowHigh.qml
Normal file
34
LowHigh.qml
Normal 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -36,6 +36,9 @@ Item {
|
||||||
|
|
||||||
EvenOdd {
|
EvenOdd {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LowHigh {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function destroyOnClose(obj) {
|
function destroyOnClose(obj) {
|
||||||
|
|
Loading…
Reference in a new issue