using MorgSimulator.Framework; namespace MorgSimulator { public class MovementStrategyPaddles : IMovementStrategy { public void Move(Entity entity, (int x, int y) newLocation) { System.Console.WriteLine($"Morg {entity.Id} Paddles from ({entity.Location.x},{entity.Location.y}) to ({newLocation.x},{newLocation.y})"); entity.Location = newLocation; } } }