예제 #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);
 }
예제 #7
0
 public void Remove(DamageRedirection preventaion)
 {
     _redirections.Remove(preventaion);
 }
예제 #8
0
 public void Add(DamageRedirection prevention)
 {
     _redirections.Add(prevention);
 }