common io.bordeauxkt.kotlin15¶ Types¶ Card¶ data class Card(val value: Int, val color: Color) Color¶ enum Color : Enum<Color> The different card colors. Deck¶ data class Deck(val cards: Set<Card>) Multiple cards placed together. Hand¶ typealias Hand = Set<Card> An arbitrary set of cards, like the ones a player is holding. Player¶ class Player(val name: String)