commonMain.mahjongutils.models.hand.IHasFuro.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.models.hand
import mahjongutils.models.Furo
import mahjongutils.models.FuroType
interface IHasFuro {
/**
* 副露
*/
val furo: List
/**
* 是否门清
*/
val menzen: Boolean
get() = furo.all { it.type == FuroType.Ankan }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy