コード例 #1
0
ファイル: DamageRedirections.cs プロジェクト: longde123/grove
 public void Remove(DamageRedirection preventaion)
 {
     _redirections.Remove(preventaion);
 }
コード例 #2
0
ファイル: Damage.cs プロジェクト: longde123/grove
 public void AddRedirection(DamageRedirection damageRedirection)
 {
     _redirections.Add(damageRedirection);
 }
コード例 #3
0
ファイル: DamageRedirections.cs プロジェクト: longde123/grove
 public void Add(DamageRedirection prevention)
 {
     _redirections.Add(prevention);
 }
コード例 #4
0
ファイル: Damage.cs プロジェクト: longde123/grove
 public bool WasAlreadyRedirected(DamageRedirection damageRedirection)
 {
     return(_redirections.Contains(damageRedirection));
 }
コード例 #5
0
ファイル: Damage.cs プロジェクト: leloulight/magicgrove
 public bool WasAlreadyRedirected(DamageRedirection damageRedirection)
 {
     return _redirections.Contains(damageRedirection);
 }
コード例 #6
0
ファイル: Damage.cs プロジェクト: leloulight/magicgrove
 public void AddRedirection(DamageRedirection damageRedirection)
 {
     _redirections.Add(damageRedirection);
 }
コード例 #7
0
 public void Remove(DamageRedirection preventaion)
 {
     _redirections.Remove(preventaion);
 }
コード例 #8
0
 public void Add(DamageRedirection prevention)
 {
     _redirections.Add(prevention);
 }