@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
15 lines (14 loc) • 465 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;