/// <summary> /// Copy Constructor. /// </summary> /// <param name="copy">Object to copy.</param> public TechLevel(TechLevel copy) { this.techValues = new Dictionary <string, int>(copy.techValues); }