コード例 #1
0
ファイル: Detonator.cs プロジェクト: GameDiffs/TheForest
 public void RemoveOnDetonatingDelegate(Detonator.OnDetonating del)
 {
     this.OnDetonatingDelegates = (Detonator.OnDetonating)Delegate.Remove(this.OnDetonatingDelegates, del);
 }
コード例 #2
0
ファイル: Detonator.cs プロジェクト: GameDiffs/TheForest
 public void SetOnDetonatingDelegate(Detonator.OnDetonating del)
 {
     this.OnDetonatingDelegates = del;
 }
コード例 #3
0
ファイル: Detonator.cs プロジェクト: GameDiffs/TheForest
 public void AddOnDetonatingDelegate(Detonator.OnDetonating del)
 {
     this.OnDetonatingDelegates = (Detonator.OnDetonating)Delegate.Combine(this.OnDetonatingDelegates, del);
 }