Example #1
0
 public void Cure(InfectionSpeciman inf)
 {
     Logger.Instance.Add("victim", this.GetHashCode().ToString(), String.Format("Cured from {0}", inf.GetHashCode()));
       this.infections.Remove(inf);
 }
Example #2
0
 public void Cure(InfectionSpeciman inf)
 {
     Logger.Instance.Add("victim", this.GetHashCode().ToString(), String.Format("Cured from {0}", inf.GetHashCode()));
     this.infections.Remove(inf);
 }
Example #3
0
 public void Infect(InfectionSpeciman inf)
 {
     Logger.Instance.Add("victim", this.GetHashCode().ToString(), String.Format("Infected with {0}", inf.GetHashCode()));
       this.infections.Add(inf);
 }
Example #4
0
 public void Infect(InfectionSpeciman inf)
 {
     Logger.Instance.Add("victim", this.GetHashCode().ToString(), String.Format("Infected with {0}", inf.GetHashCode()));
     this.infections.Add(inf);
 }