Ejemplo n.º 1
0
 /// <summary>
 /// Get the <see cref="T:Northwoods.Go.IGoActionObject" /> that the mouse is over, and activate it
 /// by setting its <see cref="P:Northwoods.Go.IGoActionObject.ActionActivated" /> property to true
 /// and calling its <see cref="M:Northwoods.Go.IGoActionObject.OnActionActivated(Northwoods.Go.GoView,Northwoods.Go.GoInputEventArgs)" /> method.
 /// </summary>
 public override void Start()
 {
     ActionObject = PickActionObject();
     if (ActionObject == null)
     {
         StopTool();
         return;
     }
     ActionObject.ActionActivated = true;
     ActionObject.OnActionActivated(base.View, base.LastInput);
 }