namespace MorgSimulator { public class MovementStrategyOozes : IMovementStrategy { public void Move(Morg morg, (int x, int y) newLocation) { System.Console.WriteLine($"Morg {morg.Id} Oozes from ({morg.Location.x},{morg.Location.y}) to ({newLocation.x},{newLocation.y})"); morg.Location = newLocation; } } }