Beispiel #1
0
 public bool Fire(WeaponRack.Mode mode)
 {
     if (wr == null)
     {
         Debug.LogFormat("Tried to fire a ship with no weaponrack");
         return(false);
     }
     return(wr.Fire(this.transform.position, vel, this.transform.up, mode));
 }