package MovementStrategy; public interface IMoveableObject { ObjectParameters GetObjectPosition(); int GetStep(); Boolean TryMoveObject(MovementDirection direction); }