Exemplo n.º 1
0
 public BurningEffect(GamePhysicalObject target) : base(target)
 {
     target.Effects.Add(this);
     target.SetDamage(BurningDemage);
 }
Exemplo n.º 2
0
 public DestroyingEffect(GamePhysicalObject target) : base(target)
 {
 }
Exemplo n.º 3
0
 public GameEffect(GamePhysicalObject target)
 {
     _targetObject = target;
 }