
classes.variation.PokerVariation.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cards_2.13 Show documentation
Show all versions of cards_2.13 Show documentation
Scala library for card-playing functionality, including games Blackjack and Thirty-One
The newest version!
package classes.variation
import play.api.libs.json.{ Json, Format }
object PokerVariation extends Enumeration {
type PokerVariation = Value
val Straight, Stud, Draw, CommunityCard = Value
implicit val format: Format[PokerVariation] = Json.formatEnum(this)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy