UNPKG

borderlands2

Version:

Borderlands 2 weapon damage and DPS calculation library

21 lines (19 loc) 407 B
import { v4 as uuidv4 } from 'uuid' import { Class } from "../value_object/class" import { Skill } from "./skill" export class Build { public id : string public clazz : Class public skills : Skill[] public name? : string constructor( clazz: Class, skills: Skill[], name?: string ) { this.id = uuidv4() this.clazz = clazz this.skills = skills this.name = name } }