Exemplo n.º 1
0
 public void AddOnDetonationDelegate(Detonator.OnDetonation del)
 {
     this.OnDetonationDelegates = (Detonator.OnDetonation)Delegate.Combine(this.OnDetonationDelegates, del);
 }
Exemplo n.º 2
0
 public void RemoveOnDetonationDelegate(Detonator.OnDetonation del)
 {
     this.OnDetonationDelegates = (Detonator.OnDetonation)Delegate.Remove(this.OnDetonationDelegates, del);
 }
Exemplo n.º 3
0
 public void SetOnDetonationDelegate(Detonator.OnDetonation del)
 {
     this.OnDetonationDelegates = del;
 }