@throw-out-error/minecraft-mcfunction
Version:
A simple way to create your mcfunction files using Typescript syntax.
16 lines • 489 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.effect = exports.EffectCommand = void 0;
const __1 = require("..");
class EffectCommand extends __1.Command {
constructor(...args) {
super('effect', args);
}
}
exports.EffectCommand = EffectCommand;
function effect(...args) {
return new EffectCommand(...args);
}
exports.effect = effect;
__1.Command.registerCommand('effect', effect);
//# sourceMappingURL=effect.js.map