public BulletCard popBullet() { BulletCard popped = (BulletCard)this.bullets[this.bullets.Count - 1]; this.bullets.Remove(popped); return(popped); }
//bullets public void addBullet(BulletCard b) { this.bullets.Add(b); }