commonMain.mahjongutils.shanten.Models.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mahjong-utils-jvm Show documentation
Show all versions of mahjong-utils-jvm Show documentation
Mahjong Utils (for Japanese Riichi Mahjong)
package mahjongutils.shanten
import kotlinx.serialization.ExperimentalSerializationApi
import kotlinx.serialization.Serializable
import mahjongutils.models.hand.CommonHandPattern
import mahjongutils.models.hand.Hand
/**
* 向听信息
*/
@Serializable
sealed interface Shanten {
/**
* 向听数
*/
val shantenNum: Int
}
@Serializable
sealed interface ShantenResult {
/**
* 手牌
*/
val hand: Hand
/**
* 向听信息
*/
val shantenInfo: S
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy