@erikyuzwa/rogue-punk
Version:
a JavaScript library to help you build your roguelike adventures
30 lines (29 loc) • 497 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Vector3d = void 0;
class Vector3d {
constructor(x, y, z) {
this.x = x;
this.y = y;
this.z = z;
}
get x() {
return this.x;
}
set x(x) {
this.x = x;
}
get y() {
return this.y;
}
set y(y) {
this.y = y;
}
get z() {
return this.z;
}
set z(z) {
this.z = z;
}
}
exports.Vector3d = Vector3d;