public Actions(float rechargeTimeInput, RechargeBars UIbarInput)
    {
        //constructor

        this.rechargeTime = rechargeTimeInput;
        this.UIbar        = UIbarInput;
    }
    public Actions(float rechargeTimeInput, RechargeBars UIbarInput, GameObject spawnGoInput)
    {
        //constructor

        this.rechargeTime = rechargeTimeInput;
        this.UIbar        = UIbarInput;
        this.spawnObject  = spawnGoInput;
    }