@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
16 lines (15 loc) • 335 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
class InventorySlot {
name;
count;
slot;
wasPickedUp;
damage;
constructor(slotIndex) {
this.slot = slotIndex;
}
}
exports.default = InventorySlot;