commonMain.mahjongutils.entry.models.HanHu.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mahjong-utils-entry Show documentation
Show all versions of mahjong-utils-entry Show documentation
Provider a union entry for Mahjong Utils (for Japanese Riichi Mahjong)
package mahjongutils.entry.models
import kotlinx.serialization.Serializable
import mahjongutils.hanhu.HanHuOptions
@Serializable
internal data class HanHu(
val han: Int,
val hu: Int,
val options: HanHuOptions = HanHuOptions.Default,
)