Example #1
0
    public void ShowRevivingGauge(bool presentGauge)
    {
        RevivingGaugePresenter.PresentGUI(presentGauge);

        if (!presentGauge)
        {
            RevivingGaugePresenter.SetPercentage(0);
        }
    }
Example #2
0
 public void UpdateRevivingGauge(int current, int max)
 {
     RevivingGaugePresenter.UpdateGauge(current, max);
 }