com.jacobtread.blaze.tdf.VarIntConversion.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-core Show documentation
Show all versions of blaze-core Show documentation
Core library for blaze networking
The newest version!
package com.jacobtread.blaze.tdf
interface VarIntConversion {
fun toInt(): Int
fun toUInt(): UInt
fun toShort(): Short
fun toUShort(): UShort
fun toByte(): Byte
fun toUByte(): UByte
fun toULong(): ULong
}