SimpleChunkLocation

data class SimpleChunkLocation(x: Int, z: Int)

Functions

component1
Link copied to clipboard
operator fun component1(): Int
component2
Link copied to clipboard
operator fun component2(): Int
copy
Link copied to clipboard
fun copy(x: Int, z: Int): SimpleChunkLocation
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

x
Link copied to clipboard
val x: Int
z
Link copied to clipboard
val z: Int

Extensions

withWorld
Link copied to clipboard
fun SimpleChunkLocation.withWorld(world: World): Chunk