Esempio n. 1
0
 public void Add(float x, float y, float rad)
 {
     Bullet b = new Bullet(x, y, rad);
     b.OnBreak += Break;
     b.OnHit += Hit;
     Bullets.Add(b);
 }
Esempio n. 2
0
 public void Remove(Bullet b)
 {
     if (Bullets.Contains(b))
         Bullets.Remove(b);
 }