public void Shoot()
 {
     Bullet aShot = new Bullet(cm, this);
     bullets.Add(aShot);
 }
 public void Shoot(ContentManager cm)
 {
     Bullet aShot = new Bullet(cm, this);
     bullets.Add(aShot);
 }