示例#1
0
 public void Remove(DamageRedirection preventaion)
 {
     _redirections.Remove(preventaion);
 }
示例#2
0
文件: Damage.cs 项目: longde123/grove
 public void AddRedirection(DamageRedirection damageRedirection)
 {
     _redirections.Add(damageRedirection);
 }
示例#3
0
 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
 public bool WasAlreadyRedirected(DamageRedirection damageRedirection)
 {
     return _redirections.Contains(damageRedirection);
 }
示例#6
0
 public void AddRedirection(DamageRedirection damageRedirection)
 {
     _redirections.Add(damageRedirection);
 }
 public void Remove(DamageRedirection preventaion)
 {
     _redirections.Remove(preventaion);
 }
 public void Add(DamageRedirection prevention)
 {
     _redirections.Add(prevention);
 }