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 Show documentation
Show all versions of mahjong-utils Show documentation
Mahjong Utils (for Japanese Riichi Mahjong)
The newest version!
package mahjongutils.models.hand
import mahjongutils.models.Furo
import mahjongutils.models.Kan
interface IHasFuro {
/**
* 副露
*/
val furo: List
/**
* 是否门清
*/
val menzen: Boolean
get() = furo.all { it is Kan && it.ankan }
}