/// <param name="s">Skill Proficiencies</param> /// <param name="f">Feature</param> /// <param name="e">Equipment</param> /// <param name="tp">Tool Proficiencies</param> public Background(Skills s, string f, string e, string[] tP) { skillProficiencies = s; toolProficiencies = tP; feature = f; equipment = e; }
/// <param name="s">Skill Proficiencies</param> /// <param name="f">Feature</param> /// <param name="l">Languages</param> /// <param name="e">Equipment</param> public Background(Skills s, string f, string[] l, string e) { skillProficiencies = s; feature = f; languages = l; equipment = e; }
public DDClass(Skills cS, string[] eq, SavingThrows[] sT, string[] tP, HitDice hD, bool iSC) { isSpellCaster = iSC; hitDice = hD; toolProficiencies = tP; savingThrows = sT; choosableSkills = cS; equipment = eq; }