UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

25 lines (24 loc) 668 B
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); exports.NavigationResult = void 0; /** * Contains data resulting from a navigation operation, * including whether the navigation is possible and the path of * navigation. */ class NavigationResult { /** * Whether the navigation result contains a full path, * including to the requested destination. */ "isFullPath"; /** * A set of block locations that comprise the navigation route. */ get path() { return []; } } exports.NavigationResult = NavigationResult;