@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
17 lines (15 loc) • 547 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
const ManagedComponent_1 = require("../ManagedComponent");
class NumberValueComponent extends ManagedComponent_1.ManagedComponent {
get value() {
return this.getProperty("value");
}
set value(newVal) {
this.setProperty("value", newVal);
}
}
exports.default = NumberValueComponent;
//# sourceMappingURL=../../maps/minecraft/components/NumberValueComponent.js.map