Beispiel #1
0
 /// <summary>
 /// Searches this task force for an instance of the given ship.
 /// </summary>
 /// <param name="ship">The ship to look for</param>
 /// <returns>Returns true if the given ship is in this task force.</returns>
 public bool ContainsShip(MovingObject ship)
 {
     return(Boids.Contains(ship));
 }