com.jacobtread.blaze.data.VarPair.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.data
data class VarPair(val a: ULong, val b: ULong) {
constructor(a: UInt, b: UInt) : this(a.toULong(), b.toULong())
}