mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-26 09:53:51 -07:00
21
paper-api/src/main/java/org/bukkit/Axis.java
Normal file
21
paper-api/src/main/java/org/bukkit/Axis.java
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user