Exemplo n.º 1
0
 public void SetNextMovementHandler(IRobotMovementHandler inRightTurner)
 {
     _nextHandler = inRightTurner;
 }
Exemplo n.º 2
0
 public RobotController(IRobotMovementHandler movementHandler)
 {
     _movementHandler = movementHandler;
 }
Exemplo n.º 3
0
 public HandlerContainer(IRobotMovementHandler inInitialHandler)
 {
     _initialHandler = inInitialHandler;
 }