gradle init

This commit is contained in:
Him188 2020-01-20 22:30:33 +08:00
parent 7c4263da0f
commit 6b6499e929

View File

@ -0,0 +1,18 @@
package net.mamoe.mirai.qqandroid.network.io
import kotlinx.io.core.Input
@UseExperimental(ExperimentalUnsignedTypes::class)
inline class JceHead(private val value: Long) {
val tag: Int get() = (value ushr 32).toInt()
val type: Int get() = value.toUInt().toInt()
}
class JceInput(
private val input: Input
): Input by input {
private fun readHead(): JceHead {
}
}