Exemplo n.º 1
0
 public void PlaceOneAnimal(Animal animal, int row, int col)
 {
     PlaceAnimal(animal, row, col);
 }
Exemplo n.º 2
0
 public void PlaceAnimal(Animal animal, int Row, int Column) //Row og Collum kommer fra tile, som refereret i Animal)
 {
     Tiles[Row, Column].AddAnimal(animal);
 }