RoomPosition

class RoomPosition(val room: Room, val x: Int, val y: Int, val z: Int)

Provides an x, y and z position for a room.

Constructors

Link copied to clipboard
constructor(room: Room, x: Int, y: Int, z: Int)

Properties

Link copied to clipboard
val room: Room
Link copied to clipboard
val x: Int
Link copied to clipboard
val y: Int
Link copied to clipboard
val z: Int

Functions

Link copied to clipboard
fun isAtPosition(x: Int, y: Int, z: Int): Boolean

Determine if this is at a give x, y and z position.