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