コード例 #1
0
ファイル: Targetable.cs プロジェクト: GameDiffs/TheForest
 public void AddOnNotDetectedDelegate(Targetable.OnNotDetectedDelegate del)
 {
     this.onNotDetectedDelegates = (Targetable.OnNotDetectedDelegate)Delegate.Combine(this.onNotDetectedDelegates, del);
 }
コード例 #2
0
ファイル: Targetable.cs プロジェクト: GameDiffs/TheForest
 public void SetOnNotDetectedDelegate(Targetable.OnNotDetectedDelegate del)
 {
     this.onNotDetectedDelegates = del;
 }
コード例 #3
0
ファイル: Targetable.cs プロジェクト: GameDiffs/TheForest
 public void RemoveOnNotDetectedDelegate(Targetable.OnNotDetectedDelegate del)
 {
     this.onNotDetectedDelegates = (Targetable.OnNotDetectedDelegate)Delegate.Remove(this.onNotDetectedDelegates, del);
 }
コード例 #4
0
 public void RemoveOnNotDetectedDelegate(Targetable.OnNotDetectedDelegate del)
 {
     this.onNotDetectedDelegates = (Targetable.OnNotDetectedDelegate)Delegate.Remove(this.onNotDetectedDelegates, del);
 }
コード例 #5
0
 public void SetOnNotDetectedDelegate(Targetable.OnNotDetectedDelegate del)
 {
     this.onNotDetectedDelegates = del;
 }
コード例 #6
0
 public void AddOnNotDetectedDelegate(Targetable.OnNotDetectedDelegate del)
 {
     this.onNotDetectedDelegates = (Targetable.OnNotDetectedDelegate)Delegate.Combine(this.onNotDetectedDelegates, del);
 }