namespace MorgSimulator { public interface IMovementStrategy { void Move(Morg morg, (int x, int y) newLocation); } }