public void CopyFromInternal(PF2SpellList r, bool newc)
 {
     Class = r._class;
     if (newc)
     {
         _levels = r.Levels.CloneContents();
     }
     else
     {
         Levels.ReplaceClone(r.Levels);
     }
 }
 public void CopyFrom(PF2SpellList r)
 {
     CopyFromInternal(r, false);
 }
 public PF2SpellList(PF2SpellList r)
 {
     CopyFromInternal(r, true);
 }