@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
24 lines (22 loc) • 630 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
class PackMetaDataInformationGenerator {
constructor() {
this.id = "PACKMETADATA";
this.title = "General info";
}
getTopicData(topicId) {
return {
title: topicId.toString(),
};
}
summarize(info, infoSet) { }
async generate(project) {
const items = [];
return items;
}
}
exports.default = PackMetaDataInformationGenerator;
//# sourceMappingURL=../maps/info/PackMetaDataInfoGenerator.js.map