public void copyFrom(Achievements another) { this.Claimed = new Dictionary <string, int>(another.Claimed); this.Notified = new Dictionary <string, int>(another.Notified); }
public Achievements(Achievements another) { this.Claimed = new Dictionary <string, int>(); this.Notified = new Dictionary <string, int>(); this.copyFrom(another); }