@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
13 lines (12 loc) • 450 B
TypeScript
import CommandArgument from "./CommandArgument";
export default class Command {
_commandName: string;
_arguments: CommandArgument[];
constructor(commandText: string);
absolutizeCoordinates(absoluteX: number, absoluteY: number, absoluteZ: number): void;
get hasRelativeOrLocalCoordinates(): boolean;
get firstX(): CommandArgument;
get firstY(): CommandArgument;
get firstZ(): CommandArgument;
toString(): string;
}