예제 #1
0
 /// <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;
 }
예제 #2
0
 /// <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;
 }
예제 #3
0
파일: Class.cs 프로젝트: CyberSpiral/D-D
 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;
 }