UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

21 lines (20 loc) 466 B
"use strict"; // 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;