コード例 #1
0
ファイル: Projectile.cs プロジェクト: GameDiffs/TheForest
 public void AddOnDetonationDelegate(Projectile.OnDetonation del)
 {
     this.OnDetonationDelegates = (Projectile.OnDetonation)Delegate.Combine(this.OnDetonationDelegates, del);
 }
コード例 #2
0
ファイル: Projectile.cs プロジェクト: GameDiffs/TheForest
 public void SetOnLaunchedUpdateDelegate(Projectile.OnLaunchedUpdate del)
 {
     this.OnLaunchedUpdateDelegates = del;
 }
コード例 #3
0
ファイル: Projectile.cs プロジェクト: GameDiffs/TheForest
 public void SetOnDetonationDelegate(Projectile.OnDetonation del)
 {
     this.OnDetonationDelegates = del;
 }
コード例 #4
0
ファイル: Projectile.cs プロジェクト: GameDiffs/TheForest
 public void RemoveOnLaunchedUpdateDelegate(Projectile.OnLaunchedUpdate del)
 {
     this.OnLaunchedUpdateDelegates = (Projectile.OnLaunchedUpdate)Delegate.Remove(this.OnLaunchedUpdateDelegates, del);
 }
コード例 #5
0
ファイル: Projectile.cs プロジェクト: GameDiffs/TheForest
 public void RemoveOnDetonationDelegate(Projectile.OnDetonation del)
 {
     this.OnDetonationDelegates = (Projectile.OnDetonation)Delegate.Remove(this.OnDetonationDelegates, del);
 }
コード例 #6
0
ファイル: Projectile.cs プロジェクト: GameDiffs/TheForest
 public void AddOnLaunchedUpdateDelegate(Projectile.OnLaunchedUpdate del)
 {
     this.OnLaunchedUpdateDelegates = (Projectile.OnLaunchedUpdate)Delegate.Combine(this.OnLaunchedUpdateDelegates, del);
 }