package net.knarcraft.stargate; /** * This stores a block location as a vector in an alternate coordinate system * *
*/ public class RelativeBlockVector { private int right; private int depth; private int distance; /** * Instantiates a new relative block vector * @param rightThe x coordinate in the gate description
* @param depthThe y coordinate in the gate description
* @param distance */ public RelativeBlockVector(int right, int depth, int distance) { this.right = right; this.depth = depth; this.distance = distance; } public int getRight() { return right; } public int getDepth() { return depth; } public int getDistance() { return distance; } }