UNPKG

@throw-out-error/minecraft-mcfunction

Version:

A simple way to create your mcfunction files using Typescript syntax.

16 lines 456 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.say = exports.SayCommand = void 0; const __1 = require("../"); class SayCommand extends __1.Command { constructor(message) { super('say', [message]); } } exports.SayCommand = SayCommand; function say(message) { return new SayCommand(message); } exports.say = say; __1.Command.registerCommand('say', say); //# sourceMappingURL=say.js.map