UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

26 lines (25 loc) 574 B
/** * Holds information for expressing the net size of a volume of * blocks. */ export default class BlockAreaSize { /** * X size (west to east) component of this block area. */ "x": number; /** * Y size (down to up) of this block area size. */ "y": number; /** * Z size (south to north) of this block area size. */ "z": number; /** * @remarks * Tests whether this block area size is equal to another * BlockAreaSize object. * @param other */ equals(other: BlockAreaSize): boolean; }