Ejemplo n.º 1
0
 public void Remove(Bullet_old bullet)
 {
     bulletList.Remove(bullet);
 }
Ejemplo n.º 2
0
 public override void Shoot(Bullets bullets)
 {
     Bullet_old bullet = new Bullet_old(positionMid.X, positionMid.Y + 40, bullets, Direction);
 }
Ejemplo n.º 3
0
 public void Add(Bullet_old bullet)
 {
     bulletList.Add(bullet);
 }