commonMain.mahjongutils.models.hand.Hand.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mahjong-utils Show documentation
Show all versions of mahjong-utils Show documentation
Mahjong Utils (for Japanese Riichi Mahjong)
The newest version!
package mahjongutils.models.hand
import kotlinx.serialization.Serializable
import mahjongutils.models.Furo
import mahjongutils.models.Tile
/**
* 手牌
*/
@Serializable
data class Hand(
/**
* 门前的牌
*/
val tiles: List,
override val furo: List,
/**
* 手牌形
*/
val patterns: Collection
) : IHasFuro