1 2 3 4 5 6 7
namespace MorgSimulator.Framework { public interface IMovementStrategy { void Move(Entity entity, (int x, int y) newLocation); } }