|
|
|
@ -78,11 +78,19 @@ open class HandHistory : RealmObject(), Deletable, RowRepresentable, Identifiabl |
|
|
|
* The ante |
|
|
|
* The ante |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
var ante: Double = 0.0 |
|
|
|
var ante: Double = 0.0 |
|
|
|
|
|
|
|
set(value) { |
|
|
|
|
|
|
|
field = value |
|
|
|
|
|
|
|
this.bigBlindAnte = false |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*** |
|
|
|
/*** |
|
|
|
* Big blind ante |
|
|
|
* Big blind ante |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
var bigBlindAnte: Boolean = false |
|
|
|
var bigBlindAnte: Boolean = false |
|
|
|
|
|
|
|
set(value) { |
|
|
|
|
|
|
|
field = value |
|
|
|
|
|
|
|
this.ante = 0.0 |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*** |
|
|
|
/*** |
|
|
|
* Number of players in the hand |
|
|
|
* Number of players in the hand |
|
|
|
|