@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
22 lines (20 loc) • 592 B
JavaScript
;
// 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 {
/**
* A set of block locations that comprise the navigation route.
*/
get path() {
return [];
}
}
exports.NavigationResult = NavigationResult;
//# sourceMappingURL=../maps/minecraft/NavigationResult.js.map