package com.volmit.iris.util; /** * Represents a dimension (coordinates not worlds) * * @author cyberpwn */ public enum DimensionFace { /** * The X dimension (width) */ X, /** * The Y dimension (height) */ Y, /** * The Z dimension (depth) */ Z }