void Start()
 {
     gunType = BaseGunType.BG_SHORT;
     ChangeGun(gunType);
 }
 public void ChangeGun(BaseGunType _gunType)
 {
     gunType = _gunType;
     gunController.SetGun(_gunType);
 }