Exemple #1
0
 /// <summary>
 /// Just call the reload magazine of both weapon.
 /// </summary>
 public void Reload()
 {
     if (indexActiveWeapon == 0) // Reload double guns
     {
         doubleGuns.ReloadMagazine();
     }
     else // Flamethrower
     {
         flamethrower.ReloadMagazine();
     }
 }