Exemple #1
0
 public void ChangeFox(string name)
 {
     CurrentFox = FoxList.First(fox => name == fox.Name);
 }
Exemple #2
0
 public void AddFox(string name)
 {
     FoxList.Add(new Fox(name));
 }