Added in Primary and Secondary bool variables

This commit is contained in:
2026-07-17 22:32:05 +01:00
parent 0ed7e9f0f3
commit 2908e50d63

View File

@@ -9,6 +9,7 @@ public class Skill // class, not struct
public SkillType skillType; public SkillType skillType;
public enum SkillTier { Novice, Apprentice, Journeyman, Expert, Master } public enum SkillTier { Novice, Apprentice, Journeyman, Expert, Master }
public SkillTier skillTier; public SkillTier skillTier;
public bool primarySkill, secondarySkill;
public int level; public int level;
private static readonly Dictionary<SkillType, string> Descriptions = new Dictionary<SkillType, string> private static readonly Dictionary<SkillType, string> Descriptions = new Dictionary<SkillType, string>