borderlands2
Version:
Borderlands 2 weapon damage and DPS calculation library
14 lines • 391 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var uuid_1 = require("uuid");
var Build = /** @class */ (function () {
function Build(clazz, skills, name) {
this.id = uuid_1.v4();
this.clazz = clazz;
this.skills = skills;
this.name = name;
}
return Build;
}());
exports.Build = Build;
//# sourceMappingURL=build.js.map