namespace MorgSimulator { public class FeedingStrategyAbsorbs : IFeedingStrategy { public void Feed(Morg predator, Morg prey) { System.Console.WriteLine($"Morg {predator.Id} Absorbs Morg {prey.Id} at ({prey.Location.x},{prey.Location.y})"); prey.IsAlive = false; } } }