geforkt von Mirrors/Paper
22 Zeilen
345 B
Java
22 Zeilen
345 B
Java
|
package org.bukkit;
|
||
|
|
||
|
/**
|
||
|
* Represents a mutually perpendicular axis in 3D Cartesian coordinates. In
|
||
|
* Minecraft the x, z axes lie in the horizontal plane, whilst the y axis points
|
||
|
* upwards.
|
||
|
*/
|
||
|
public enum Axis {
|
||
|
/**
|
||
|
* The x axis.
|
||
|
*/
|
||
|
X,
|
||
|
/**
|
||
|
* The y axis.
|
||
|
*/
|
||
|
Y,
|
||
|
/**
|
||
|
* The z axis.
|
||
|
*/
|
||
|
Z;
|
||
|
}
|