Example #1
0
        public BulletCard popBullet()
        {
            BulletCard popped = (BulletCard)this.bullets[this.bullets.Count - 1];

            this.bullets.Remove(popped);
            return(popped);
        }
Example #2
0
 //bullets
 public void addBullet(BulletCard b)
 {
     this.bullets.Add(b);
 }