public override MatchMaker CopyInstance()
 {
     MatchLetter matcher = new MatchLetter(this);
     return matcher;
 }
 private MatchLetter(MatchLetter toCopy)
     : base(toCopy)
 {
     this.myLetter = toCopy.myLetter;
 }