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