Ejemplo n.º 1
0
 public static void AddBullet(BulletEntity obj)
 {
     _bullets.Add(obj);
 }
Ejemplo n.º 2
0
 public static void RemoveBullet(BulletEntity obj)
 {
     _bullets.Remove(obj);
 }
 //mehtods
 /// <summary>
 /// AddBullet, method, adds a bullet to the bullets list
 /// </summary>
 /// <param name="bullet">bullet to add</param>
 public void AddBullet(BulletEntity bullet)
 {
     _bullets.Add(bullet);
 }
Ejemplo n.º 4
0
 public static void RemoveBullet(BulletEntity obj)
 {
     _bullets.Remove(obj);
 }
Ejemplo n.º 5
0
 public static void AddBullet(BulletEntity obj)
 {
     _bullets.Add(obj);
 }
Ejemplo n.º 6
0
 //mehtods
 /// <summary>
 /// AddBullet, method, adds a bullet to the bullets list
 /// </summary>
 /// <param name="bullet">bullet to add</param>
 public void AddBullet(BulletEntity bullet)
 {
     _bullets.Add(bullet);
 }