public void removePlant(Plant p) { plants.Remove(p); }
/// <summary> /// This functions creates new plant in the environment. /// </summary> public void createPlant(Plant p) { plants.Add(p); }