namespace MorgSimulator.Framework { public interface IMovementStrategy { void Move(Entity entity, (int x, int y) newLocation); } }