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