Exemplo n.º 1
0
 public void AddBullet(Bullet b)
 {
     this.mBullets.Add(b);
 }
Exemplo n.º 2
0
 public void RemoveBullet(Bullet b)
 {
     b.Dispose(this.SceneMgr);
     this.mBullets.Remove(b);
 }