SetArrows() public method

public SetArrows ( bool inRange, bool animated ) : void
inRange bool
animated bool
return void
Example #1
0
 public void foundPossibleResultPoint(ResultPoint point)
 {
     if (point != null)
     {
         _view.SetArrows(true, true);
     }
     else
     {
         _view.SetArrows(false, true);
     }
 }