public override Wrapper GetSerializableWrapper()
        {
            ArmourProficiencyFeatureWrapper wrap = new ArmourProficiencyFeatureWrapper();

            wrap.armourType = armourType;
            wrap.lvl        = lvl;

            return(wrap);
        }
 public ArmourProficiencyFeature(ArmourProficiencyFeatureWrapper wrap)
 {
     this.armourType = wrap.armourType;
     this.lvl        = wrap.lvl;
 }