Ejemplo n.º 1
0
 public void AddOnStopDelegate(FireController.OnStopDelegate del)
 {
     this.onStopDelegates = (FireController.OnStopDelegate)Delegate.Combine(this.onStopDelegates, del);
 }
Ejemplo n.º 2
0
 public void RemoveOnStopDelegate(FireController.OnStopDelegate del)
 {
     this.onStopDelegates = (FireController.OnStopDelegate)Delegate.Remove(this.onStopDelegates, del);
 }
Ejemplo n.º 3
0
 public void SetOnStopDelegate(FireController.OnStopDelegate del)
 {
     this.onStopDelegates = del;
 }
Ejemplo n.º 4
0
 public void AddOnStopDelegate(FireController.OnStopDelegate del)
 {
     this.onStopDelegates = (FireController.OnStopDelegate)Delegate.Combine(this.onStopDelegates, del);
 }