예제 #1
0
 public void copyFrom(Achievements another)
 {
     this.Claimed  = new Dictionary <string, int>(another.Claimed);
     this.Notified = new Dictionary <string, int>(another.Notified);
 }
예제 #2
0
 public Achievements(Achievements another)
 {
     this.Claimed  = new Dictionary <string, int>();
     this.Notified = new Dictionary <string, int>();
     this.copyFrom(another);
 }