コード例 #1
0
 public static void AddBullet(BulletEntity bullet)
 {
     _bullets.Add(bullet);
 }
コード例 #2
0
 public static void AddBullet(BulletEntity bullet)
 {
     _bullets.Add(bullet);
 }
コード例 #3
0
 /// <summary>
 /// Removes bullet from bullet list.
 /// </summary>
 /// <param name="bullet">Bullet to remove.</param>
 public static void RemoveBullet(BulletEntity bullet)
 {
     _bullets.Remove(bullet);
 }
コード例 #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);
 }