typesforbukkit
Version:
Types For Bukkit
14 lines (12 loc) • 462 B
text/typescript
// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/Axis
namespace org.bukkit {
/** @description 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 */
export enum Axis {
/** @description The X Axis */
X,
/** @description The Y Axis */
Y,
/** @description The Z Axis */
Z
}
}