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