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); }
public void Remove(Bullet b) { if (Bullets.Contains(b)) Bullets.Remove(b); }