commonMain.mahjongutils.entry.IMethodEntry.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-jvm Show documentation
Show all versions of mahjong-utils-entry-jvm Show documentation
Provider a union entry for Mahjong Utils (for Japanese Riichi Mahjong)
The newest version!
package mahjongutils.entry
internal interface IMethodEntry {
fun call(rawParams: RAW_PARAMS): RAW_RESULT
@Throws(MethodExecutionException::class)
fun callReceivingData(rawParams: RAW_PARAMS): RAW_RESULT
}