@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
23 lines (21 loc) • 524 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents a type of effect - like poison - that can be
* applied to an entity.
*/
class EffectType {
/**
* @remarks
* Identifier name of this effect type.
* @returns
* Identifier of the effect type.
*/
getName() {
return "";
}
}
exports.default = EffectType;
//# sourceMappingURL=../maps/minecraft/EffectType.js.map