mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 18:55:18 +00:00
24 lines
270 B
Java
24 lines
270 B
Java
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
|
|
} |