@throw-out-error/minecraft-mcfunction
Version:
A simple way to create your mcfunction files using Typescript syntax.
16 lines • 434 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Rotation = void 0;
const _1 = require(".");
class Rotation extends _1.ArgumentObject {
constructor({ alpha, beta }) {
super();
this.alpha = alpha;
this.beta = beta;
}
toString() {
return `${this.alpha} ${this.beta}`;
}
}
exports.Rotation = Rotation;
//# sourceMappingURL=rotation.js.map