public void SetNextMovementHandler(IRobotMovementHandler inRightTurner) { _nextHandler = inRightTurner; }
public RobotController(IRobotMovementHandler movementHandler) { _movementHandler = movementHandler; }
public HandlerContainer(IRobotMovementHandler inInitialHandler) { _initialHandler = inInitialHandler; }