Exemple #1
0
 /// <summary>
 /// Dispose of all the guns
 /// </summary>
 public void Dispose()
 {
     foreach (Gun g in collectedGuns)
     {
         g.Dispose();
     }
     if (ActiveGun != null)
     {
         ActiveGun.Dispose();
     }
 }