UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

16 lines (15 loc) 441 B
import BlockVolume from "./BlockVolume"; import Block from "./Block"; import BlockVolumePlane from "./BlockVolumePlane"; export default class BlockVolumeLine { private _cube; private _plane; private _y; get cube(): BlockVolume; get y(): number; get x(): number; get plane(): BlockVolumePlane; blocks: Block[]; constructor(cube: BlockVolume, plane: BlockVolumePlane, y: number); z(z: number): Block; }