public static void AddBullet(BulletEntity bullet)
 {
     _bullets.Add(bullet);
 }
Example #2
0
 public static void AddBullet(BulletEntity bullet)
 {
     _bullets.Add(bullet);
 }
 /// <summary>
 /// Removes bullet from bullet list.
 /// </summary>
 /// <param name="bullet">Bullet to remove.</param>
 public static void RemoveBullet(BulletEntity bullet)
 {
     _bullets.Remove(bullet);
 }
Example #4
0
 /// <summary>
 /// Removes bullet from bullet list.
 /// </summary>
 /// <param name="bullet">Bullet to remove.</param>
 public static void RemoveBullet(BulletEntity bullet)
 {
     _bullets.Remove(bullet);
 }