Example #1
0
 public void SetOnDetonationDelegate(Projectile.OnDetonation del)
 {
     this.OnDetonationDelegates = del;
 }
Example #2
0
 public void AddOnDetonationDelegate(Projectile.OnDetonation del)
 {
     this.OnDetonationDelegates = (Projectile.OnDetonation)Delegate.Combine(this.OnDetonationDelegates, del);
 }
Example #3
0
 public void RemoveOnDetonationDelegate(Projectile.OnDetonation del)
 {
     this.OnDetonationDelegates = (Projectile.OnDetonation)Delegate.Remove(this.OnDetonationDelegates, del);
 }