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