public void RemoveOnDetonationDelegate(OnDetonation del)
 {
     this.OnDetonationDelegates -= del;
 }
 public void SetOnDetonationDelegate(OnDetonation del)
 {
     this.OnDetonationDelegates = del;
 }
 public void AddOnDetonationDelegate(OnDetonation del)
 {
     this.OnDetonationDelegates += del;
 }
Exemple #4
0
 public void RemoveOnDetonationDelegate(OnDetonation del)
 {
     this.OnDetonationDelegates -= del;
 }
Exemple #5
0
 public void SetOnDetonationDelegate(OnDetonation del)
 {
     this.OnDetonationDelegates = del;
 }
Exemple #6
0
 public void AddOnDetonationDelegate(OnDetonation del)
 {
     this.OnDetonationDelegates += del;
 }