/*
  * Determines if the player can reload the weapon.
  */
 public bool CanReload()
 {
     if (CurrentWeapon == null)
     {
         return(false);
     }
     return(CurrentWeapon.CanReload());
 }