Ejemplo n.º 1
0
 public void Remove()
 {
     _layer.Remove(this);
     Location = null;
     Position = null;
 }
Ejemplo n.º 2
0
 public bool OnCollision(Player player)
 {
     player.Health += RestoreHealth;
     _layer.Remove(this);
     return(true);
 }