Exemplo n.º 1
0
    public void ShowRevivingGauge(bool presentGauge)
    {
        RevivingGaugePresenter.PresentGUI(presentGauge);

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