Commit 6b6499e9 authored by Him188's avatar Him188

gradle init

parent 7c4263da
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 {
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment