Added Even/Odd bets.

This commit is contained in:
greek 2024-06-06 08:11:37 +01:00
parent 4f856b0ee8
commit a0d35d73ae
3 changed files with 38 additions and 0 deletions

View file

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

34
EvenOdd.qml Normal file
View 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
}
}
}

View file

@ -33,6 +33,9 @@ Item {
RedBlack {
}
EvenOdd {
}
}
function destroyOnClose(obj) {