|
|
|
|
@ -9,7 +9,6 @@ import android.view.View |
|
|
|
|
import android.view.ViewGroup |
|
|
|
|
import androidx.appcompat.widget.AppCompatTextView |
|
|
|
|
import io.realm.RealmObject |
|
|
|
|
import io.realm.annotations.Ignore |
|
|
|
|
import net.pokeranalytics.android.R |
|
|
|
|
import net.pokeranalytics.android.exceptions.PAIllegalStateException |
|
|
|
|
import net.pokeranalytics.android.model.handhistory.Street |
|
|
|
|
@ -241,4 +240,9 @@ open class Card : RealmObject() { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
val isWildCard: Boolean |
|
|
|
|
get() { |
|
|
|
|
return this.value == null || this.suit == null || this.suit == Suit.UNDEFINED |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |