commonMain.mahjongutils.entry.coder.ParamsDecoder.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.coder
import kotlin.reflect.KType
import kotlin.reflect.typeOf
internal interface ParamsDecoder {
fun decodeParams(rawParams: RAW_PARAMS, paramsType: KType): PARAMS
}